/* Options: Date: 2026-05-09 19:52:34 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://chienbinhdevias-admin-api-sandbox.adnx.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ActiveTFA.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ChangeTwoFASecurity { public pin: string; public password: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BaseResponse implements IResponseRequest { public code: number; public message?: string; public data?: string; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/users/tfa/active", "POST") export class ActiveTFA extends ChangeTwoFASecurity implements IReturn> { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'ActiveTFA'; } public getMethod() { return 'POST'; } public createResponse() { return new BaseResponse(); } }