/** * 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 LocalStaticSend { /** * Whether the campaign should be sent with local recipient timezone send (requires UTC time) or statically sent at the given time. */ 'isLocal': boolean; /** * Determines if we should send to local recipient timezone if the given time has passed. Only applicable to local sends. */ 'sendPastRecipientsImmediately'?: boolean = false; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "isLocal", "baseName": "is_local", "type": "boolean" }, { "name": "sendPastRecipientsImmediately", "baseName": "send_past_recipients_immediately", "type": "boolean" } ]; static getAttributeTypeMap() { return LocalStaticSend.attributeTypeMap; } }