/* Options: Date: 2025-01-08 03:10:13 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DownloadArtifact.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } // @Route("/download/artifact/{RefId}") export class DownloadArtifact implements IReturn, IGet { public refId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DownloadArtifact'; } public getMethod() { return 'GET'; } public createResponse() { return new Blob(); } }