/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export declare class CatalogItemResponseObjectResourceAttributes { /** * The ID of the catalog item in an external system. */ 'externalId'?: string | null; /** * The title of the catalog item. */ 'title'?: string | null; /** * A description of the catalog item. */ 'description'?: string | null; /** * 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). */ 'price'?: number | null; /** * URL pointing to the location of the catalog item on your website. */ 'url'?: string | null; /** * URL pointing to the location of a full image of the catalog item. */ 'imageFullUrl'?: string | null; /** * URL pointing to the location of an image thumbnail of the catalog item */ 'imageThumbnailUrl'?: string | null; /** * List of URLs pointing to the locations of images of the catalog item. */ 'images'?: Array | null; /** * Flat JSON blob to provide custom metadata about the catalog item. May not exceed 100kb. */ 'customMetadata'?: object | null; /** * Boolean value indicating whether the catalog item is published. */ 'published'?: boolean | null; /** * Date and time when the catalog item was created, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm). */ 'created'?: Date | null; /** * Date and time when the catalog item was last updated, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm). */ 'updated'?: Date | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }