/** * 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 CatalogItemCreateQueryResourceObjectAttributes { /** * The ID of the catalog item in an external system. */ 'externalId': string; /** * The integration type. Currently only \"$custom\" is supported. */ 'integrationType'?: CatalogItemCreateQueryResourceObjectAttributes.IntegrationTypeEnum | '$custom' | null; /** * The title of the catalog item. */ 'title': string; /** * 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; /** * The type of catalog. Currently only \"$default\" is supported. */ 'catalogType'?: string | null; /** * A description of the catalog item. */ 'description': string; /** * URL pointing to the location of the catalog item on your website. */ 'url': string; /** * 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; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CatalogItemCreateQueryResourceObjectAttributes { enum IntegrationTypeEnum { Custom } }