/* Options: Date: 2025-05-05 00:00:56 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: RecordSession.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IPost { } /** @description Start call recording for the specified session. If already started, this will not do anything */ // @Route("/sessions/{sessionId}/record", "POST") // @Api(Description="Start call recording for the specified session. If already started, this will not do anything") export class RecordSession implements IReturnVoid, IPost { public sessionId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RecordSession'; } public getMethod() { return 'POST'; } public createResponse() {} }