/** * 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 DynamicProductBlockProperties { '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; 'buttonText'?: string | null; 'feed'?: string | null; 'feedOffset'?: number | null; 'isNbp'?: boolean | 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": "buttonText", "baseName": "button_text", "type": "string" }, { "name": "feed", "baseName": "feed", "type": "string" }, { "name": "feedOffset", "baseName": "feed_offset", "type": "number" }, { "name": "isNbp", "baseName": "is_nbp", "type": "boolean" } ]; static getAttributeTypeMap() { return DynamicProductBlockProperties.attributeTypeMap; } }