/** * Whispir Platform API * Whispir Platform API for cross channel and multi channel communications. Documentation on each endpoint is available at https://developers.whispir.com. * * The version of the OpenAPI document: 1.0.0 * Contact: support@whispir.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'; /** * The message response object. */ export class MessageResponseDetailedMessageresponsesInnerResponseMessage { /** * The message response content. */ 'content': string; /** * The message response acknowledgement status. */ 'acknowledged': string; /** * The message response channel. */ 'channel': MessageResponseDetailedMessageresponsesInnerResponseMessage.ChannelEnum; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "content", "baseName": "content", "type": "string" }, { "name": "acknowledged", "baseName": "acknowledged", "type": "string" }, { "name": "channel", "baseName": "channel", "type": "MessageResponseDetailedMessageresponsesInnerResponseMessage.ChannelEnum" } ]; static getAttributeTypeMap() { return MessageResponseDetailedMessageresponsesInnerResponseMessage.attributeTypeMap; } } export namespace MessageResponseDetailedMessageresponsesInnerResponseMessage { export enum ChannelEnum { NA = 'N/A', Sms = 'sms', Email = 'email', Voice = 'voice' } }