/* Options: Date: 2025-05-04 21:56:59 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: NewFlowMessage.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export class Struct { public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Value { public boolValue?: boolean; public stringValue: string; public numberValue?: number; public listValue: Struct[]; public structValue: Struct; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/flows/message") export class NewFlowMessage implements IReturnVoid { /** @description The ID of the endpoint that received the message */ // @ApiMember(Description="The ID of the endpoint that received the message") public endpointId: string; /** @description The session values */ // @ApiMember(Description="The session values") public sessionParameters: Struct; /** @description The from address */ // @ApiMember(Description="The from address") public fromAddress: string; /** @description The to address */ // @ApiMember(Description="The to address") public toAddress: string; /** @description The identity of the sender */ // @ApiMember(Description="The identity of the sender") public identity: string; /** @description The display name of the sender (will default to identity if not specified */ // @ApiMember(Description="The display name of the sender (will default to identity if not specified") public displayName: string; /** @description The URL to call when replies need to be sent back */ // @ApiMember(Description="The URL to call when replies need to be sent back") public messageUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'NewFlowMessage'; } public getMethod() { return 'POST'; } public createResponse() {} }