/** * 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. */ import { RequestFile } from './models'; export class StaticProductBlockProperties { 'isAiGenerated'?: boolean | null; 'isPrebuiltContent'?: boolean | null; 'itemSubtypeId'?: number | null; 'showButton'?: boolean | null; 'showOriginalPrice'?: boolean | null; 'showPrice'?: boolean | null; 'showRating'?: boolean | null; 'showRatingCount'?: boolean | null; 'showTitle'?: boolean | null; 'showTitleLinks'?: boolean | null; 'titlePlaceholder'?: string | null; 'dynamic': boolean | null; 'showDescription'?: boolean | null; 'localizeForRecipient'?: boolean | null; 'language'?: string | null; 'region'?: string | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "isAiGenerated", "baseName": "is_ai_generated", "type": "boolean" }, { "name": "isPrebuiltContent", "baseName": "is_prebuilt_content", "type": "boolean" }, { "name": "itemSubtypeId", "baseName": "item_subtype_id", "type": "number" }, { "name": "showButton", "baseName": "show_button", "type": "boolean" }, { "name": "showOriginalPrice", "baseName": "show_original_price", "type": "boolean" }, { "name": "showPrice", "baseName": "show_price", "type": "boolean" }, { "name": "showRating", "baseName": "show_rating", "type": "boolean" }, { "name": "showRatingCount", "baseName": "show_rating_count", "type": "boolean" }, { "name": "showTitle", "baseName": "show_title", "type": "boolean" }, { "name": "showTitleLinks", "baseName": "show_title_links", "type": "boolean" }, { "name": "titlePlaceholder", "baseName": "title_placeholder", "type": "string" }, { "name": "dynamic", "baseName": "dynamic", "type": "boolean" }, { "name": "showDescription", "baseName": "show_description", "type": "boolean" }, { "name": "localizeForRecipient", "baseName": "localize_for_recipient", "type": "boolean" }, { "name": "language", "baseName": "language", "type": "string" }, { "name": "region", "baseName": "region", "type": "string" } ]; static getAttributeTypeMap() { return StaticProductBlockProperties.attributeTypeMap; } }