/** * 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 CatalogVariantCreateQueryResourceObjectAttributes { /** * The ID of the catalog item variant in an external system. */ 'externalId': string; /** * The type of catalog. Currently only \"$default\" is supported. */ 'catalogType'?: string | null; /** * The integration type. Currently only \"$custom\" is supported. */ 'integrationType'?: CatalogVariantCreateQueryResourceObjectAttributes.IntegrationTypeEnum | '$custom' | null; /** * The title of the catalog item variant. */ 'title': string; /** * A description of the catalog item variant. */ 'description': string; /** * The SKU of the catalog item variant. */ 'sku': string; /** * This field controls the visibility of this catalog item variant in product feeds/blocks. This field supports the following values: `1`: a product will not appear in dynamic product recommendation feeds and blocks if it is out of stock. `0` or `2`: a product can appear in dynamic product recommendation feeds and blocks regardless of inventory quantity. */ 'inventoryPolicy'?: CatalogVariantCreateQueryResourceObjectAttributes.InventoryPolicyEnum | 0 | 1 | 2 | null; /** * The quantity of the catalog item variant currently in stock. */ 'inventoryQuantity': number; /** * This field can be used to set the price on the catalog item variant, which is what gets displayed for the item variant when included in emails. For most price-update use cases, you will also want to update the `price` on any parent items using the [Update Catalog Item Endpoint](https://developers.klaviyo.com/en/reference/update_catalog_item). */ 'price': number; /** * URL pointing to the location of the catalog item variant on your website. */ 'url': string; /** * URL pointing to the location of a full image of the catalog item variant. */ 'imageFullUrl'?: string | null; /** * URL pointing to the location of an image thumbnail of the catalog item variant. */ 'imageThumbnailUrl'?: string | null; /** * List of URLs pointing to the locations of images of the catalog item variant. */ 'images'?: Array | null; /** * Flat JSON blob to provide custom metadata about the catalog item variant. May not exceed 100kb. */ 'customMetadata'?: object | null; /** * Boolean value indicating whether the catalog item variant 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 CatalogVariantCreateQueryResourceObjectAttributes { enum IntegrationTypeEnum { Custom } enum InventoryPolicyEnum { NUMBER_0, NUMBER_1, NUMBER_2 } }