/* Options: Date: 2024-05-13 22:45:19 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PaymentProfileBalanceInquiryEndpoint.* //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="/sales/paymentProfile/balanceInquiry", Verbs="GET") @ApiResponse(Description="Looks up the balance of a payment profile created by the Vault API", ResponseType=PaymentProfileBalanceInquiryResponse.class, StatusCode=200) public static class PaymentProfileBalanceInquiryEndpoint extends PaymentProfileBalanceInquiryRequest implements IReturn, IApiKeyEndpoint { /** * Api Authentication Key */ @ApiMember(Description="Api Authentication Key", IsRequired=true, ParameterType="query") public String ApiKey = null; /** * Store Id */ @ApiMember(Description="Store Id", IsRequired=true, ParameterType="query") public Integer StoreId = null; /** * Encoded data uniquely identifying the payment profile. Long term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). The length is usually 80 characters. */ @ApiMember(Description="\r\nEncoded data uniquely identifying the payment profile. \r\nLong term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). \r\nThe length is usually 80 characters.", IsRequired=true) public String AcctToken = null; /** * Encoded data containing non-PCI information about the Payment Profile. ProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,it cannot be accepted and a new profile will have to be created with a new AcctToken. The timevalidation is to prevent old tokens from be re-played at a later time. The length is variable, but generally around 1,000 characters. */ @ApiMember(Description="\r\nEncoded data containing non-PCI information about the Payment Profile. \r\n\r\nProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,\r\nit cannot be accepted and a new profile will have to be created with a new AcctToken. The time\r\nvalidation is to prevent old tokens from be re-played at a later time. \r\n\r\nThe length is variable, but generally around 1,000 characters.") public String ProfileToken = null; public String getApiKey() { return ApiKey; } public PaymentProfileBalanceInquiryEndpoint setApiKey(String value) { this.ApiKey = value; return this; } public Integer getStoreId() { return StoreId; } public PaymentProfileBalanceInquiryEndpoint setStoreId(Integer value) { this.StoreId = value; return this; } public String getAcctToken() { return AcctToken; } public PaymentProfileBalanceInquiryEndpoint setAcctToken(String value) { this.AcctToken = value; return this; } public String getProfileToken() { return ProfileToken; } public PaymentProfileBalanceInquiryEndpoint setProfileToken(String value) { this.ProfileToken = value; return this; } private static Object responseType = PamentProfileBalanceInquiryEndpointResponse.class; public Object getResponseType() { return responseType; } } public static class PamentProfileBalanceInquiryEndpointResponse { public Boolean Success = null; public String Last4 = null; public BigDecimal AccountBalance = null; public String ResponseCode = null; public String Message = null; public Boolean isSuccess() { return Success; } public PamentProfileBalanceInquiryEndpointResponse setSuccess(Boolean value) { this.Success = value; return this; } public String getLast4() { return Last4; } public PamentProfileBalanceInquiryEndpointResponse setLast4(String value) { this.Last4 = value; return this; } public BigDecimal getAccountBalance() { return AccountBalance; } public PamentProfileBalanceInquiryEndpointResponse setAccountBalance(BigDecimal value) { this.AccountBalance = value; return this; } public String getResponseCode() { return ResponseCode; } public PamentProfileBalanceInquiryEndpointResponse setResponseCode(String value) { this.ResponseCode = value; return this; } public String getMessage() { return Message; } public PamentProfileBalanceInquiryEndpointResponse setMessage(String value) { this.Message = value; return this; } } public static interface IApiKeyEndpoint { public String ApiKey = null; } public static class PaymentProfileBalanceInquiryRequest { public String TerminalIpAddress = null; public String AcctToken = null; public String ProfileToken = null; public Integer StoreId = null; public String getTerminalIpAddress() { return TerminalIpAddress; } public PaymentProfileBalanceInquiryRequest setTerminalIpAddress(String value) { this.TerminalIpAddress = value; return this; } public String getAcctToken() { return AcctToken; } public PaymentProfileBalanceInquiryRequest setAcctToken(String value) { this.AcctToken = value; return this; } public String getProfileToken() { return ProfileToken; } public PaymentProfileBalanceInquiryRequest setProfileToken(String value) { this.ProfileToken = value; return this; } public Integer getStoreId() { return StoreId; } public PaymentProfileBalanceInquiryRequest setStoreId(Integer value) { this.StoreId = value; return this; } } }