/* Options: Date: 2025-05-04 20:01:44 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: GetFileInfo.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export interface IPost { } export class GetFileInfoResponse { public uri: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Get the specified file's URI */ // @Route("/app/file/{fileId}", "GET") // @Api(Description="Get the specified file's URI") export class GetFileInfo implements IReturn, IPost { /** @description The ID of the file */ // @ApiMember(Description="The ID of the file") public fileId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetFileInfo'; } public getMethod() { return 'POST'; } public createResponse() { return new GetFileInfoResponse(); } }