/* Options: Date: 2025-07-17 23:44:38 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: AuditLogPostReq.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/members/audit", "POST") export class AuditLogPostReq implements IReturn { public employeeGuid: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AuditLogPostReq'; } public getMethod() { return 'POST'; } public createResponse() { return new Blob(); } }