/* Options: Date: 2026-04-23 19:23:58 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qlcn-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: VerifyMisaESignRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/api/misa-esign/verify", Verbs="POST") public static class VerifyMisaESignRequest implements IReturn, IPost { public Integer accountSignatureId = null; public String certAlias = null; public Integer getAccountSignatureId() { return accountSignatureId; } public VerifyMisaESignRequest setAccountSignatureId(Integer value) { this.accountSignatureId = value; return this; } public String getCertAlias() { return certAlias; } public VerifyMisaESignRequest setCertAlias(String value) { this.certAlias = value; return this; } private static Object responseType = MisaESignVerifyResponse.class; public Object getResponseType() { return responseType; } } public static class MisaESignVerifyResponse implements IResponseRequest { public Boolean ok = null; public Integer code = null; public String message = null; public String certificateSerial = null; public ArrayList certificates = null; public Boolean isOk() { return ok; } public MisaESignVerifyResponse setOk(Boolean value) { this.ok = value; return this; } public Integer getCode() { return code; } public MisaESignVerifyResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public MisaESignVerifyResponse setMessage(String value) { this.message = value; return this; } public String getCertificateSerial() { return certificateSerial; } public MisaESignVerifyResponse setCertificateSerial(String value) { this.certificateSerial = value; return this; } public ArrayList getCertificates() { return certificates; } public MisaESignVerifyResponse setCertificates(ArrayList value) { this.certificates = value; return this; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } public static class MisaESignCertificate { public String userId = null; public String keyAlias = null; public String appName = null; public String keyStatus = null; public String emailName = null; public String effectiveDate = null; public String expirationDate = null; public String getUserId() { return userId; } public MisaESignCertificate setUserId(String value) { this.userId = value; return this; } public String getKeyAlias() { return keyAlias; } public MisaESignCertificate setKeyAlias(String value) { this.keyAlias = value; return this; } public String getAppName() { return appName; } public MisaESignCertificate setAppName(String value) { this.appName = value; return this; } public String getKeyStatus() { return keyStatus; } public MisaESignCertificate setKeyStatus(String value) { this.keyStatus = value; return this; } public String getEmailName() { return emailName; } public MisaESignCertificate setEmailName(String value) { this.emailName = value; return this; } public String getEffectiveDate() { return effectiveDate; } public MisaESignCertificate setEffectiveDate(String value) { this.effectiveDate = value; return this; } public String getExpirationDate() { return expirationDate; } public MisaESignCertificate setExpirationDate(String value) { this.expirationDate = value; return this; } } }