/* Options: Date: 2026-06-28 14:54:00 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SetLegalApprovalRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IResponseRequest { code: number; message: string; } export class SetLegalApprovalResponse implements IResponseRequest { public code: number; public message: string; public enabled: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/WorkflowStep/set-legal-approval", "Post") export class SetLegalApprovalRequest implements IReturn { public workflowId: number; public enabled: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SetLegalApprovalRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new SetLegalApprovalResponse(); } }