/* Options: Date: 2026-05-19 04:33:32 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SaveCreditCardRequest.* //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="/cardTokens/saveCard", Verbs="GET POST") public static class SaveCreditCardRequest implements IReturn { public String pan = null; public String expYear = null; public String expMonth = null; public String cvc = null; public String phoneVerificationNumber = null; public String deviceId = null; public RequestSignature signature = null; public String getPan() { return pan; } public SaveCreditCardRequest setPan(String value) { this.pan = value; return this; } public String getExpYear() { return expYear; } public SaveCreditCardRequest setExpYear(String value) { this.expYear = value; return this; } public String getExpMonth() { return expMonth; } public SaveCreditCardRequest setExpMonth(String value) { this.expMonth = value; return this; } public String getCvc() { return cvc; } public SaveCreditCardRequest setCvc(String value) { this.cvc = value; return this; } public String getPhoneVerificationNumber() { return phoneVerificationNumber; } public SaveCreditCardRequest setPhoneVerificationNumber(String value) { this.phoneVerificationNumber = value; return this; } public String getDeviceId() { return deviceId; } public SaveCreditCardRequest setDeviceId(String value) { this.deviceId = value; return this; } public RequestSignature getSignature() { return signature; } public SaveCreditCardRequest setSignature(RequestSignature value) { this.signature = value; return this; } private static Object responseType = SaveCreditCardResult.class; public Object getResponseType() { return responseType; } } public static class SaveCreditCardResult { public Integer statusCode = null; public Boolean success = null; public String message = null; public String token = null; public Integer getStatusCode() { return statusCode; } public SaveCreditCardResult setStatusCode(Integer value) { this.statusCode = value; return this; } public Boolean isSuccess() { return success; } public SaveCreditCardResult setSuccess(Boolean value) { this.success = value; return this; } public String getMessage() { return message; } public SaveCreditCardResult setMessage(String value) { this.message = value; return this; } public String getToken() { return token; } public SaveCreditCardResult setToken(String value) { this.token = value; return this; } } public static class RequestSignature { public String systemId = null; public String systemSecret = null; public String signature = null; public String getSystemId() { return systemId; } public RequestSignature setSystemId(String value) { this.systemId = value; return this; } public String getSystemSecret() { return systemSecret; } public RequestSignature setSystemSecret(String value) { this.systemSecret = value; return this; } public String getSignature() { return signature; } public RequestSignature setSignature(String value) { this.signature = value; return this; } } }