/* Options: Date: 2024-10-06 10:32:57 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FinancePaymentRequest.* //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="/Finance/Payment/{uuid}", Verbs="POST") public static class FinancePaymentRequest implements IReturn { public String uuid = null; public BigDecimal amount = null; public String getUuid() { return uuid; } public FinancePaymentRequest setUuid(String value) { this.uuid = value; return this; } public BigDecimal getAmount() { return amount; } public FinancePaymentRequest setAmount(BigDecimal value) { this.amount = value; return this; } private static Object responseType = String.class; public Object getResponseType() { return responseType; } } }