/* Options: Date: 2026-01-09 15:00:21 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LiveAnswerGetLiveKitConfig.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export class LiveAnswerLiveKitConfig { public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/nodes/live-answer/livekit/config", "GET") export class LiveAnswerGetLiveKitConfig implements IReturn { public accountSid: string; public callSid: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LiveAnswerGetLiveKitConfig'; } public getMethod() { return 'GET'; } public createResponse() { return new LiveAnswerLiveKitConfig(); } }