/* Options: Date: 2025-05-04 22:04:41 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: ConferenceSession.* //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 Moves the specified session into a conference room by name */ // @Route("/sessions/{sessionId}/conference", "POST") // @Api(Description="Moves the specified session into a conference room by name") export class ConferenceSession implements IReturnVoid, IPost { /** @description The ID of the session that is being moved */ // @ApiMember(Description="The ID of the session that is being moved") public sessionId: string; /** @description The sid of the active call that is on the voice device */ // @ApiMember(Description="The sid of the active call that is on the voice device") public callSid: string; /** @description The name of the conference room */ // @ApiMember(Description="The name of the conference room") public queueName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ConferenceSession'; } public getMethod() { return 'POST'; } public createResponse() {} }