Sha256: 76433e6199039fb4c8a72f2ce95d3e87bf34873824b02b7eca3f3a848e3f966f
Contents?: true
Size: 1.88 KB
Versions: 13
Compression:
Stored size: 1.88 KB
Contents
# KlaviyoAPI::CatalogItemUpdateQueryResourceObjectAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **title** | **String** | The title of the catalog item. | [optional] | | **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] | | **description** | **String** | A description of the catalog item. | [optional] | | **url** | **String** | URL pointing to the location of the catalog item on your website. | [optional] | | **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] | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::CatalogItemUpdateQueryResourceObjectAttributes.new( title: Ocean Blue Shirt (Sample), price: 42, description: A description of the catalog item., 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 ) ```
Version data entries
13 entries across 13 versions & 1 rubygems