/* Options: Date: 2025-05-06 14:00:45 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetPaymentMethod.* //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="/paymentMethods/intid/{Id}", Verbs="GET POST") // @Route(Path="/paymentMethods/nameid/{NameId}", Verbs="GET POST") public static class GetPaymentMethod implements IReturn { public Integer id = null; public String nameId = null; public Integer getId() { return id; } public GetPaymentMethod setId(Integer value) { this.id = value; return this; } public String getNameId() { return nameId; } public GetPaymentMethod setNameId(String value) { this.nameId = value; return this; } private static Object responseType = PaymentMethod.class; public Object getResponseType() { return responseType; } } public static class PaymentMethod { public Integer id = null; public String paymentMethodId = null; public String paymentMethodName = null; public Boolean active = null; public Boolean needsCardInfo = null; public Integer getId() { return id; } public PaymentMethod setId(Integer value) { this.id = value; return this; } public String getPaymentMethodId() { return paymentMethodId; } public PaymentMethod setPaymentMethodId(String value) { this.paymentMethodId = value; return this; } public String getPaymentMethodName() { return paymentMethodName; } public PaymentMethod setPaymentMethodName(String value) { this.paymentMethodName = value; return this; } public Boolean isActive() { return active; } public PaymentMethod setActive(Boolean value) { this.active = value; return this; } public Boolean isNeedsCardInfo() { return needsCardInfo; } public PaymentMethod setNeedsCardInfo(Boolean value) { this.needsCardInfo = value; return this; } } }