/* Options: Date: 2026-04-23 19:26:09 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: GetMisaESignCertificatesRequest.* //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/certificates", Verbs="GET") public static class GetMisaESignCertificatesRequest implements IReturn, IGet { public Integer accountSignatureId = null; public Integer getAccountSignatureId() { return accountSignatureId; } public GetMisaESignCertificatesRequest setAccountSignatureId(Integer value) { this.accountSignatureId = value; return this; } private static Object responseType = MisaESignCertificatesResponse.class; public Object getResponseType() { return responseType; } } public static class MisaESignCertificatesResponse implements IResponseRequest { public ArrayList data = null; public Integer code = null; public String message = null; public ArrayList getData() { return data; } public MisaESignCertificatesResponse setData(ArrayList value) { this.data = value; return this; } public Integer getCode() { return code; } public MisaESignCertificatesResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public MisaESignCertificatesResponse setMessage(String value) { this.message = 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; } } }