# KlaviyoAPI::TemplateRenderQueryResourceObjectAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **String** | The ID of template | | | **context** | **Object** | The context for the template render. This must be a JSON object which has values for any tags used in the template. See [this doc](https://help.klaviyo.com/hc/en-us/articles/115005084927-Template-tags-and-variable-syntax-reference-classic-editor-) for more details. | | | **return_fields** | **Array<String>** | Provide fields to limit the returned data | [optional] | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::TemplateRenderQueryResourceObjectAttributes.new( id: null, context: {"first_name":"Jane","last_name":"Smith"}, return_fields: null ) ```