/* Options: Date: 2025-07-17 23:34:51 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: DeleteMemberDocument.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class MemberDocumentResponse { public success: boolean; public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/members/{EmployeeGuid}/documents", "DELETE") export class DeleteMemberDocument implements IReturn { public employeeGuid: string; public document: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteMemberDocument'; } public getMethod() { return 'DELETE'; } public createResponse() { return new MemberDocumentResponse(); } }