/** * 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 DropShadowBlockStyles { 'blockBackgroundColor'?: string | null; 'blockPaddingBottom'?: number | null; 'blockPaddingLeft'?: number | null; 'blockPaddingRight'?: number | null; 'blockPaddingTop'?: number | null; 'mobileStretchContent'?: boolean | null; /** * Shadow color. */ 'shadowColor'?: DropShadowBlockStyles.ShadowColorEnum | 'dark' | 'light' | 'medium' | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "blockBackgroundColor", "baseName": "block_background_color", "type": "string" }, { "name": "blockPaddingBottom", "baseName": "block_padding_bottom", "type": "number" }, { "name": "blockPaddingLeft", "baseName": "block_padding_left", "type": "number" }, { "name": "blockPaddingRight", "baseName": "block_padding_right", "type": "number" }, { "name": "blockPaddingTop", "baseName": "block_padding_top", "type": "number" }, { "name": "mobileStretchContent", "baseName": "mobile_stretch_content", "type": "boolean" }, { "name": "shadowColor", "baseName": "shadow_color", "type": "DropShadowBlockStyles.ShadowColorEnum" } ]; static getAttributeTypeMap() { return DropShadowBlockStyles.attributeTypeMap; } } export namespace DropShadowBlockStyles { export enum ShadowColorEnum { Dark = 'dark', Light = 'light', Medium = 'medium' } }