/* Options: Date: 2026-04-24 04:11:20 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qlcn-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ApproveWorkflowDeleteRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class WorkflowDeleteRequestDetail { public id: number; public workflowId: number; public requestedBy: number; public requestedByName?: string; public approverId: number; public approverName?: string; public status: WorkflowDeleteRequestStatus; public reason?: string; public comment?: string; public createdAt: string; public actionAt?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class WorkflowDeleteRequestResponse { public code: number; public message?: string; public requiresApproval: boolean; public request?: WorkflowDeleteRequestDetail; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/workflow-delete-request/{Id}/approve", "POST") export class ApproveWorkflowDeleteRequest implements IReturn { public id: number; public approve: boolean; public comment?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ApproveWorkflowDeleteRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new WorkflowDeleteRequestResponse(); } }