/* Options: Date: 2025-05-06 08:11:59 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: FindPaymentMethods.* //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="/paymentMethods", Verbs="GET POST") // @Route(Path="/paymentMethods/usecards/{UseCards}", Verbs="GET POST") public static class FindPaymentMethods implements IReturn> { public Boolean useCards = null; public Boolean isUseCards() { return useCards; } public FindPaymentMethods setUseCards(Boolean value) { this.useCards = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }