/* tslint:disable */ /* eslint-disable */ /** * communications/messages * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents the time interval to resend messages. */ export interface CommunicationMessageEnqueueAction { /** * The upper limit until which created messages will be enqueued. */ endDate: string; /** * The lower limit from which created messages will be enqueued. */ startDate: string; /** * The list of template message types to enqueue. */ templateTypes?: Array; } export const CommunicationMessageEnqueueActionTemplateTypesEnum = { Email: 'EMAIL', Sms: 'SMS', WebHook: 'WEB_HOOK', EventStream: 'EVENT_STREAM', Task: 'TASK', } as const; export type CommunicationMessageEnqueueActionTemplateTypesEnum = (typeof CommunicationMessageEnqueueActionTemplateTypesEnum)[keyof typeof CommunicationMessageEnqueueActionTemplateTypesEnum];