/* Options: Date: 2025-07-17 21:23:18 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ChangelogStatusReq.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/changelogstatus/{status}", "GET") export class ChangelogStatusReq implements IReturn { public status: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ChangelogStatusReq'; } public getMethod() { return 'GET'; } public createResponse() { return 0; } }