/* Options: Date: 2024-11-21 06:09:33 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: AchAuthorizeDebitRequest.* //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="/ACHDebit", Verbs="POST") @DataContract public static class AchAuthorizeDebitRequest implements IReturn { @DataMember public RequestorCredentials Credentials = null; @DataMember public ACHTokenDescriptor ACHToken = null; @DataMember public Integer Amount = null; @DataMember public String ReferenceKey = null; @DataMember public String Custom1 = null; @DataMember public String Custom2 = null; @DataMember public String Custom3 = null; @DataMember public String Custom4 = null; @DataMember public String Custom5 = null; @DataMember public String SignatureHash = null; @DataMember public String CurrencyCode = null; @DataMember public ACHExtendedData ExtendedData = null; public RequestorCredentials getCredentials() { return Credentials; } public AchAuthorizeDebitRequest setCredentials(RequestorCredentials value) { this.Credentials = value; return this; } public ACHTokenDescriptor getAchToken() { return ACHToken; } public AchAuthorizeDebitRequest setAchToken(ACHTokenDescriptor value) { this.ACHToken = value; return this; } public Integer getAmount() { return Amount; } public AchAuthorizeDebitRequest setAmount(Integer value) { this.Amount = value; return this; } public String getReferenceKey() { return ReferenceKey; } public AchAuthorizeDebitRequest setReferenceKey(String value) { this.ReferenceKey = value; return this; } public String getCustom1() { return Custom1; } public AchAuthorizeDebitRequest setCustom1(String value) { this.Custom1 = value; return this; } public String getCustom2() { return Custom2; } public AchAuthorizeDebitRequest setCustom2(String value) { this.Custom2 = value; return this; } public String getCustom3() { return Custom3; } public AchAuthorizeDebitRequest setCustom3(String value) { this.Custom3 = value; return this; } public String getCustom4() { return Custom4; } public AchAuthorizeDebitRequest setCustom4(String value) { this.Custom4 = value; return this; } public String getCustom5() { return Custom5; } public AchAuthorizeDebitRequest setCustom5(String value) { this.Custom5 = value; return this; } public String getSignatureHash() { return SignatureHash; } public AchAuthorizeDebitRequest setSignatureHash(String value) { this.SignatureHash = value; return this; } public String getCurrencyCode() { return CurrencyCode; } public AchAuthorizeDebitRequest setCurrencyCode(String value) { this.CurrencyCode = value; return this; } public ACHExtendedData getExtendedData() { return ExtendedData; } public AchAuthorizeDebitRequest setExtendedData(ACHExtendedData value) { this.ExtendedData = value; return this; } private static Object responseType = AchAuthorizeDebit.class; public Object getResponseType() { return responseType; } } @DataContract public static class AchAuthorizeDebit extends AchPaysecureVersion { @DataMember public String TranId = null; @DataMember public String ApprovalCode = null; @DataMember public String ResponseCode = null; @DataMember public String Network = null; @DataMember public Integer ApprovedAmount = null; @DataMember public String ErrorMessage = null; @DataMember public String ErrorCode = null; @DataMember(EmitDefaultValue=false) public AchProviderResponse AchProviderDetails = null; public String getTranId() { return TranId; } public AchAuthorizeDebit setTranId(String value) { this.TranId = value; return this; } public String getApprovalCode() { return ApprovalCode; } public AchAuthorizeDebit setApprovalCode(String value) { this.ApprovalCode = value; return this; } public String getResponseCode() { return ResponseCode; } public AchAuthorizeDebit setResponseCode(String value) { this.ResponseCode = value; return this; } public String getNetwork() { return Network; } public AchAuthorizeDebit setNetwork(String value) { this.Network = value; return this; } public Integer getApprovedAmount() { return ApprovedAmount; } public AchAuthorizeDebit setApprovedAmount(Integer value) { this.ApprovedAmount = value; return this; } public String getErrorMessage() { return ErrorMessage; } public AchAuthorizeDebit setErrorMessage(String value) { this.ErrorMessage = value; return this; } public String getErrorCode() { return ErrorCode; } public AchAuthorizeDebit setErrorCode(String value) { this.ErrorCode = value; return this; } public AchProviderResponse getAchProviderDetails() { return AchProviderDetails; } public AchAuthorizeDebit setAchProviderDetails(AchProviderResponse value) { this.AchProviderDetails = 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 ACHTokenDescriptor { public ACHType ACHTokenType = null; public String ACHTokenData = null; public ACHType getAchTokenType() { return ACHTokenType; } public ACHTokenDescriptor setAchTokenType(ACHType value) { this.ACHTokenType = value; return this; } public String getAchTokenData() { return ACHTokenData; } public ACHTokenDescriptor setAchTokenData(String value) { this.ACHTokenData = value; return this; } } @DataContract public static class ACHExtendedData { @DataMember public Integer CashbackAmount = null; @DataMember public String ConnectPaySubScriberId = null; @DataMember public String OrganizationId = null; @DataMember public String DeviceFingerPrint = null; @DataMember public String MerchantSessionId = null; @DataMember public String CurrencyCode = null; @DataMember public String PaymentType = null; @DataMember public Boolean VerifyCustomer = null; @DataMember public String CustomerExternalId = null; @DataMember public String Description = null; @DataMember public String CustomerName = null; @DataMember public String AddressLine1 = null; @DataMember public String AddressLine2 = null; @DataMember public String City = null; @DataMember public String State = null; @DataMember public String Zip = null; @DataMember public String Country = null; @DataMember public String Email = null; @DataMember public String TelephoneNumber = null; @DataMember public String ReturnUrl = null; @DataMember public String CancelUrl = null; @DataMember public String EstablishData = null; @DataMember public String RedirectUrl = null; @DataMember public Integer RetryAttemptCount = null; @DataMember public String SignatureHashVersion = null; @DataMember public Date DeadlineHashDate = null; public Integer getCashbackAmount() { return CashbackAmount; } public ACHExtendedData setCashbackAmount(Integer value) { this.CashbackAmount = value; return this; } public String getConnectPaySubScriberId() { return ConnectPaySubScriberId; } public ACHExtendedData setConnectPaySubScriberId(String value) { this.ConnectPaySubScriberId = value; return this; } public String getOrganizationId() { return OrganizationId; } public ACHExtendedData setOrganizationId(String value) { this.OrganizationId = value; return this; } public String getDeviceFingerPrint() { return DeviceFingerPrint; } public ACHExtendedData setDeviceFingerPrint(String value) { this.DeviceFingerPrint = value; return this; } public String getMerchantSessionId() { return MerchantSessionId; } public ACHExtendedData setMerchantSessionId(String value) { this.MerchantSessionId = value; return this; } public String getCurrencyCode() { return CurrencyCode; } public ACHExtendedData setCurrencyCode(String value) { this.CurrencyCode = value; return this; } public String getPaymentType() { return PaymentType; } public ACHExtendedData setPaymentType(String value) { this.PaymentType = value; return this; } public Boolean isVerifyCustomer() { return VerifyCustomer; } public ACHExtendedData setVerifyCustomer(Boolean value) { this.VerifyCustomer = value; return this; } public String getCustomerExternalId() { return CustomerExternalId; } public ACHExtendedData setCustomerExternalId(String value) { this.CustomerExternalId = value; return this; } public String getDescription() { return Description; } public ACHExtendedData setDescription(String value) { this.Description = value; return this; } public String getCustomerName() { return CustomerName; } public ACHExtendedData setCustomerName(String value) { this.CustomerName = value; return this; } public String getAddressLine1() { return AddressLine1; } public ACHExtendedData setAddressLine1(String value) { this.AddressLine1 = value; return this; } public String getAddressLine2() { return AddressLine2; } public ACHExtendedData setAddressLine2(String value) { this.AddressLine2 = value; return this; } public String getCity() { return City; } public ACHExtendedData setCity(String value) { this.City = value; return this; } public String getState() { return State; } public ACHExtendedData setState(String value) { this.State = value; return this; } public String getZip() { return Zip; } public ACHExtendedData setZip(String value) { this.Zip = value; return this; } public String getCountry() { return Country; } public ACHExtendedData setCountry(String value) { this.Country = value; return this; } public String getEmail() { return Email; } public ACHExtendedData setEmail(String value) { this.Email = value; return this; } public String getTelephoneNumber() { return TelephoneNumber; } public ACHExtendedData setTelephoneNumber(String value) { this.TelephoneNumber = value; return this; } public String getReturnUrl() { return ReturnUrl; } public ACHExtendedData setReturnUrl(String value) { this.ReturnUrl = value; return this; } public String getCancelUrl() { return CancelUrl; } public ACHExtendedData setCancelUrl(String value) { this.CancelUrl = value; return this; } public String getEstablishData() { return EstablishData; } public ACHExtendedData setEstablishData(String value) { this.EstablishData = value; return this; } public String getRedirectUrl() { return RedirectUrl; } public ACHExtendedData setRedirectUrl(String value) { this.RedirectUrl = value; return this; } public Integer getRetryAttemptCount() { return RetryAttemptCount; } public ACHExtendedData setRetryAttemptCount(Integer value) { this.RetryAttemptCount = value; return this; } public String getSignatureHashVersion() { return SignatureHashVersion; } public ACHExtendedData setSignatureHashVersion(String value) { this.SignatureHashVersion = value; return this; } public Date getDeadlineHashDate() { return DeadlineHashDate; } public ACHExtendedData setDeadlineHashDate(Date value) { this.DeadlineHashDate = value; return this; } } @DataContract public static class RequestTimestamps { @DataMember(EmitDefaultValue=false) public InOutTimes AppLayer = null; @DataMember(EmitDefaultValue=false) public InOutTimes ParentLookup = null; @DataMember(EmitDefaultValue=false) public InOutTimes RetryLookup = null; @DataMember(EmitDefaultValue=false) public InOutTimes GetCardData = null; @DataMember(EmitDefaultValue=false) public InOutTimes CardTokenize = null; @DataMember(EmitDefaultValue=false) public InOutTimes CardEncrypt = null; @DataMember(EmitDefaultValue=false) public InOutTimes DBInsert = null; @DataMember(EmitDefaultValue=false) public InOutTimes BackendProcess = null; @DataMember(EmitDefaultValue=false) public InOutTimes DBUpdate = null; @DataMember(EmitDefaultValue=false) public InOutTimes ParentUpdate = null; @DataMember(EmitDefaultValue=false) public InOutTimes Network = null; public InOutTimes getAppLayer() { return AppLayer; } public RequestTimestamps setAppLayer(InOutTimes value) { this.AppLayer = value; return this; } public InOutTimes getParentLookup() { return ParentLookup; } public RequestTimestamps setParentLookup(InOutTimes value) { this.ParentLookup = value; return this; } public InOutTimes getRetryLookup() { return RetryLookup; } public RequestTimestamps setRetryLookup(InOutTimes value) { this.RetryLookup = value; return this; } public InOutTimes getGetCardData() { return GetCardData; } public RequestTimestamps setGetCardData(InOutTimes value) { this.GetCardData = value; return this; } public InOutTimes getCardTokenize() { return CardTokenize; } public RequestTimestamps setCardTokenize(InOutTimes value) { this.CardTokenize = value; return this; } public InOutTimes getCardEncrypt() { return CardEncrypt; } public RequestTimestamps setCardEncrypt(InOutTimes value) { this.CardEncrypt = value; return this; } public InOutTimes getDbInsert() { return DBInsert; } public RequestTimestamps setDbInsert(InOutTimes value) { this.DBInsert = value; return this; } public InOutTimes getBackendProcess() { return BackendProcess; } public RequestTimestamps setBackendProcess(InOutTimes value) { this.BackendProcess = value; return this; } public InOutTimes getDbUpdate() { return DBUpdate; } public RequestTimestamps setDbUpdate(InOutTimes value) { this.DBUpdate = value; return this; } public InOutTimes getParentUpdate() { return ParentUpdate; } public RequestTimestamps setParentUpdate(InOutTimes value) { this.ParentUpdate = value; return this; } public InOutTimes getNetwork() { return Network; } public RequestTimestamps setNetwork(InOutTimes value) { this.Network = value; return this; } } @DataContract public static class PaysecureResponseInternal { @DataMember(EmitDefaultValue=false) public RequestTimestamps Timestamps = null; public RequestTimestamps getTimestamps() { return Timestamps; } public PaysecureResponseInternal setTimestamps(RequestTimestamps value) { this.Timestamps = value; return this; } } @DataContract public static class AchProviderResponse { @DataMember public String NetworkResponseCode = null; @DataMember public Integer TransactionStatusCode = null; public String getNetworkResponseCode() { return NetworkResponseCode; } public AchProviderResponse setNetworkResponseCode(String value) { this.NetworkResponseCode = value; return this; } public Integer getTransactionStatusCode() { return TransactionStatusCode; } public AchProviderResponse setTransactionStatusCode(Integer value) { this.TransactionStatusCode = value; return this; } } @DataContract public static class ACHExtendedDataResponse { @DataMember(EmitDefaultValue=false) public String NetworkResponseCode = null; @DataMember(EmitDefaultValue=false) public String NetworkErrorCode = null; @DataMember(EmitDefaultValue=false) public String DeclineReferenceCode = null; @DataMember(EmitDefaultValue=false) public String NetworkTransactionId = null; public String getNetworkResponseCode() { return NetworkResponseCode; } public ACHExtendedDataResponse setNetworkResponseCode(String value) { this.NetworkResponseCode = value; return this; } public String getNetworkErrorCode() { return NetworkErrorCode; } public ACHExtendedDataResponse setNetworkErrorCode(String value) { this.NetworkErrorCode = value; return this; } public String getDeclineReferenceCode() { return DeclineReferenceCode; } public ACHExtendedDataResponse setDeclineReferenceCode(String value) { this.DeclineReferenceCode = value; return this; } public String getNetworkTransactionId() { return NetworkTransactionId; } public ACHExtendedDataResponse setNetworkTransactionId(String value) { this.NetworkTransactionId = value; return this; } } @DataContract public static class AchPaysecureVersion extends PaysecureResponseInternal { @DataMember(EmitDefaultValue=false) public String LocalDateTime = null; @DataMember(EmitDefaultValue=false) public ACHExtendedDataResponse ExtendedData = null; public String getLocalDateTime() { return LocalDateTime; } public AchPaysecureVersion setLocalDateTime(String value) { this.LocalDateTime = value; return this; } public ACHExtendedDataResponse getExtendedData() { return ExtendedData; } public AchPaysecureVersion setExtendedData(ACHExtendedDataResponse value) { this.ExtendedData = value; return this; } } public static enum ACHType { Token, CpToken; } @DataContract public static class InOutTimes { } }