/* Options: Date: 2025-12-06 06:25:41 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetFile.* //ExcludeTypes: //DefaultImports: */ // @Route("/file", "GET") // @Route("/file/{id}", "GET") export class GetFile { // @ApiMember(IsRequired=true) public Id: string; /** @description Changes how the file is send by the server. Set to true to try and open the file in a browser without downloading. */ // @ApiMember(Description="Changes how the file is send by the server. Set to true to try and open the file in a browser without downloading.") public Stream: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetFile'; } public getMethod() { return 'GET'; } public createResponse() {} }