/** * 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'; import { ContentRepeatV0 } from './contentRepeatV0'; export class BlockDisplayOptions { /** * Show on. */ 'showOn'?: BlockDisplayOptions.ShowOnEnum | 'all' | 'desktop' | 'mobile' | null; 'visibleCheck'?: string | null; 'contentRepeat'?: ContentRepeatV0; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "showOn", "baseName": "show_on", "type": "BlockDisplayOptions.ShowOnEnum" }, { "name": "visibleCheck", "baseName": "visible_check", "type": "string" }, { "name": "contentRepeat", "baseName": "content_repeat", "type": "ContentRepeatV0" } ]; static getAttributeTypeMap() { return BlockDisplayOptions.attributeTypeMap; } } export namespace BlockDisplayOptions { export enum ShowOnEnum { All = 'all', Desktop = 'desktop', Mobile = 'mobile' } }