/* Options: Date: 2026-05-19 04:33:26 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: Complete3DSCardSaveRequest.* //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/complete3DSSave", Verbs="POST") public static class Complete3DSCardSaveRequest implements IReturn { public String sessionId = null; public String paRes = null; public String cRes = null; public String pan = null; public String cvc = null; public RequestSignature signature = null; public String getSessionId() { return sessionId; } public Complete3DSCardSaveRequest setSessionId(String value) { this.sessionId = value; return this; } public String getPaRes() { return paRes; } public Complete3DSCardSaveRequest setPaRes(String value) { this.paRes = value; return this; } public String getCRes() { return cRes; } public Complete3DSCardSaveRequest setCRes(String value) { this.cRes = value; return this; } public String getPan() { return pan; } public Complete3DSCardSaveRequest setPan(String value) { this.pan = value; return this; } public String getCvc() { return cvc; } public Complete3DSCardSaveRequest setCvc(String value) { this.cvc = value; return this; } public RequestSignature getSignature() { return signature; } public Complete3DSCardSaveRequest setSignature(RequestSignature value) { this.signature = value; return this; } private static Object responseType = Complete3DSCardSaveResult.class; public Object getResponseType() { return responseType; } } public static class Complete3DSCardSaveResult { public Integer statusCode = null; public Boolean success = null; public String message = null; public String token = null; public Integer getStatusCode() { return statusCode; } public Complete3DSCardSaveResult setStatusCode(Integer value) { this.statusCode = value; return this; } public Boolean isSuccess() { return success; } public Complete3DSCardSaveResult setSuccess(Boolean value) { this.success = value; return this; } public String getMessage() { return message; } public Complete3DSCardSaveResult setMessage(String value) { this.message = value; return this; } public String getToken() { return token; } public Complete3DSCardSaveResult 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; } } }