/* Options: Date: 2025-05-06 13:59:25 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: GetPaymentStatusRequest.* //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="/ticketOrder/getPaymentStatus", Verbs="GET POST") public static class GetPaymentStatusRequest implements IReturn { public String paymentType = null; public String paymentToken = null; public String getPaymentType() { return paymentType; } public GetPaymentStatusRequest setPaymentType(String value) { this.paymentType = value; return this; } public String getPaymentToken() { return paymentToken; } public GetPaymentStatusRequest setPaymentToken(String value) { this.paymentToken = value; return this; } private static Object responseType = String.class; public Object getResponseType() { return responseType; } } }