/* Options: Date: 2025-05-04 21:55:00 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: AddToSessionLog.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } /** @description Adds the specified log entry to the session log. */ // @Route("/sessions/{sessionId}/log", "POST") // @Api(Description="Adds the specified log entry to the session log.") export class AddToSessionLog implements IReturnVoid { /** @description The ID of the active session */ // @ApiMember(Description="The ID of the active session") public sessionId: string; /** @description The log text to add */ // @ApiMember(Description="The log text to add") public logText: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddToSessionLog'; } public getMethod() { return 'POST'; } public createResponse() {} }