/* Options: Date: 2025-03-14 13:16:48 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: PaymentMethodService.GetPaymentMethodSignUpLinkRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/api/PaymentMethod/GetPaymentMethodSignUpLink", Verbs="POST,GET") public static class GetPaymentMethodSignUpLinkRequest implements IReturn> { public Integer PaymentGatewayId = null; public Integer Id = null; public String SuccessUrl = null; public String CancelUrl = null; public Integer getPaymentGatewayId() { return PaymentGatewayId; } public GetPaymentMethodSignUpLinkRequest setPaymentGatewayId(Integer value) { this.PaymentGatewayId = value; return this; } public Integer getId() { return Id; } public GetPaymentMethodSignUpLinkRequest setId(Integer value) { this.Id = value; return this; } public String getSuccessUrl() { return SuccessUrl; } public GetPaymentMethodSignUpLinkRequest setSuccessUrl(String value) { this.SuccessUrl = value; return this; } public String getCancelUrl() { return CancelUrl; } public GetPaymentMethodSignUpLinkRequest setCancelUrl(String value) { this.CancelUrl = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class ValueTypeResult { public T Result = null; public T getResult() { return Result; } public ValueTypeResult setResult(T value) { this.Result = value; return this; } } }