/* Options: Date: 2025-03-14 13:21:17 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PaymentGatewayService.GetPaymentTokenRequest.* //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="/api/PaymentGateway/GetPaymentToken", Verbs="POST,GET") public static class GetPaymentTokenRequest implements IReturn { public Integer PaymentGatewayId = null; public BigDecimal Amount = null; public Boolean Adhoc = null; public String Description = null; public String IdempotencyKey = null; public Integer getPaymentGatewayId() { return PaymentGatewayId; } public GetPaymentTokenRequest setPaymentGatewayId(Integer value) { this.PaymentGatewayId = value; return this; } public BigDecimal getAmount() { return Amount; } public GetPaymentTokenRequest setAmount(BigDecimal value) { this.Amount = value; return this; } public Boolean isAdhoc() { return Adhoc; } public GetPaymentTokenRequest setAdhoc(Boolean value) { this.Adhoc = value; return this; } public String getDescription() { return Description; } public GetPaymentTokenRequest setDescription(String value) { this.Description = value; return this; } public String getIdempotencyKey() { return IdempotencyKey; } public GetPaymentTokenRequest setIdempotencyKey(String value) { this.IdempotencyKey = value; return this; } private static Object responseType = GatewayPaymentToken.class; public Object getResponseType() { return responseType; } } public static class GatewayPaymentToken { public String GatewayToken = null; public String ClientToken = null; public String getGatewayToken() { return GatewayToken; } public GatewayPaymentToken setGatewayToken(String value) { this.GatewayToken = value; return this; } public String getClientToken() { return ClientToken; } public GatewayPaymentToken setClientToken(String value) { this.ClientToken = value; return this; } } }