# KlaviyoAPI::CatalogItemCreateQueryResourceObjectAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **external_id** | **String** | The ID of the catalog item in an external system. | | | **integration_type** | **String** | The integration type. Currently only \"$custom\" is supported. | [optional][default to '$custom'] | | **title** | **String** | The title of the catalog item. | | | **price** | **Float** | This field can be used to set the price on the catalog item, which is what gets displayed for the item when included in emails. For most price-update use cases, you will also want to update the `price` on any child variants, using the [Update Catalog Variant Endpoint](https://developers.klaviyo.com/en/reference/update_catalog_variant). | [optional] | | **catalog_type** | **String** | The type of catalog. Currently only \"$default\" is supported. | [optional][default to '$default'] | | **description** | **String** | A description of the catalog item. | | | **url** | **String** | URL pointing to the location of the catalog item on your website. | | | **image_full_url** | **String** | URL pointing to the location of a full image of the catalog item. | [optional] | | **image_thumbnail_url** | **String** | URL pointing to the location of an image thumbnail of the catalog item | [optional] | | **images** | **Array<String>** | List of URLs pointing to the locations of images of the catalog item. | [optional] | | **custom_metadata** | **Object** | Flat JSON blob to provide custom metadata about the catalog item. May not exceed 100kb. | [optional] | | **published** | **Boolean** | Boolean value indicating whether the catalog item is published. | [optional][default to true] | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::CatalogItemCreateQueryResourceObjectAttributes.new( external_id: SAMPLE-DATA-ITEM-1, integration_type: $custom, title: Ocean Blue Shirt (Sample), price: 42, catalog_type: $default, description: Ocean blue cotton shirt with a narrow collar and buttons down the front and long sleeves. Comfortable fit and titled kaleidoscope patterns., url: https://via.placeholder.com/150, image_full_url: https://via.placeholder.com/300, image_thumbnail_url: https://via.placeholder.com/150, images: ["https://via.placeholder.com/150"], custom_metadata: {"Top Pick":true}, published: true ) ```