/* Options: Date: 2025-05-06 15:27:19 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPaymentMethod.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/paymentMethods/intid/{Id}", Verbs="GET POST") // @Route(Path="/paymentMethods/nameid/{NameId}", Verbs="GET POST") open class GetPaymentMethod : IReturn { var id:Int? = null var nameId:String? = null companion object { private val responseType = PaymentMethod::class.java } override fun getResponseType(): Any? = GetPaymentMethod.responseType } open class PaymentMethod { var id:Int? = null var paymentMethodId:String? = null var paymentMethodName:String? = null var active:Boolean? = null var needsCardInfo:Boolean? = null }