/* Options: Date: 2024-11-21 07:09:11 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.paysecure.acculynk.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DSInitializeRequest.* //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="/DSInitialize", Verbs="Put") public static class DSInitializeRequest implements IReturn { public RequestorCredentials Credentials = null; public DataStoreFor Scope = null; public RequestorCredentials getCredentials() { return Credentials; } public DSInitializeRequest setCredentials(RequestorCredentials value) { this.Credentials = value; return this; } public DataStoreFor getScope() { return Scope; } public DSInitializeRequest setScope(DataStoreFor value) { this.Scope = value; return this; } private static Object responseType = DSInitialize.class; public Object getResponseType() { return responseType; } } public static class DSInitialize { public String ErrorCode = null; public String ErrorMessage = null; public String getErrorCode() { return ErrorCode; } public DSInitialize setErrorCode(String value) { this.ErrorCode = value; return this; } public String getErrorMessage() { return ErrorMessage; } public DSInitialize setErrorMessage(String value) { this.ErrorMessage = value; return this; } } public static class RequestorCredentials { @Required() public String MerchantId = null; @Required() public String UserName = null; @Required() public String Password = null; @Required() public String Version = null; public String getMerchantId() { return MerchantId; } public RequestorCredentials setMerchantId(String value) { this.MerchantId = value; return this; } public String getUserName() { return UserName; } public RequestorCredentials setUserName(String value) { this.UserName = value; return this; } public String getPassword() { return Password; } public RequestorCredentials setPassword(String value) { this.Password = value; return this; } public String getVersion() { return Version; } public RequestorCredentials setVersion(String value) { this.Version = value; return this; } } public static class DataStoreFor { public DataStoreScope StoreScope = null; public String Value = null; public DataStoreScope getStoreScope() { return StoreScope; } public DataStoreFor setStoreScope(DataStoreScope value) { this.StoreScope = value; return this; } public String getValue() { return Value; } public DataStoreFor setValue(String value) { this.Value = value; return this; } } public static enum DataStoreScope { AllMerchants, SingleMerchant; } }