/* Options: Date: 2025-05-06 15:48:30 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: PaymentServices.PaymentCancelRequest.* //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="/payments/cancel", Verbs="GET POST") public static class PaymentCancelRequest implements IReturn { public String paymentMethodId = null; public String paymentId = null; public String details = null; public String getPaymentMethodId() { return paymentMethodId; } public PaymentCancelRequest setPaymentMethodId(String value) { this.paymentMethodId = value; return this; } public String getPaymentId() { return paymentId; } public PaymentCancelRequest setPaymentId(String value) { this.paymentId = value; return this; } public String getDetails() { return details; } public PaymentCancelRequest setDetails(String value) { this.details = value; return this; } private static Object responseType = PaymentCancelResponse.class; public Object getResponseType() { return responseType; } } public static class PaymentCancelResponse { public String status = null; public String message = null; public String paymentMethodId = null; public String jsonResponse = null; public String getStatus() { return status; } public PaymentCancelResponse setStatus(String value) { this.status = value; return this; } public String getMessage() { return message; } public PaymentCancelResponse setMessage(String value) { this.message = value; return this; } public String getPaymentMethodId() { return paymentMethodId; } public PaymentCancelResponse setPaymentMethodId(String value) { this.paymentMethodId = value; return this; } public String getJsonResponse() { return jsonResponse; } public PaymentCancelResponse setJsonResponse(String value) { this.jsonResponse = value; return this; } } }