/* Options: Date: 2025-10-27 21:56:23 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PaymentsLookup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/payments", Verbs="GET") @DataContract public static class PaymentsLookup implements IReturn> { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public Long ActionsId = null; @DataMember(Order=4) public Long DebtsId = null; @DataMember(Order=5) public Date PaymentDate = null; @DataMember(Order=6) public Double PaidAmount = null; @DataMember(Order=7) public Double DiscountAmount = null; @DataMember(Order=8) public Integer CurrenciesId = null; @DataMember(Order=9) public Long CurrencyRatesId = null; public Integer getTenantsId() { return TenantsId; } public PaymentsLookup setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getActionsId() { return ActionsId; } public PaymentsLookup setActionsId(Long value) { this.ActionsId = value; return this; } public Long getDebtsId() { return DebtsId; } public PaymentsLookup setDebtsId(Long value) { this.DebtsId = value; return this; } public Date getPaymentDate() { return PaymentDate; } public PaymentsLookup setPaymentDate(Date value) { this.PaymentDate = value; return this; } public Double getPaidAmount() { return PaidAmount; } public PaymentsLookup setPaidAmount(Double value) { this.PaidAmount = value; return this; } public Double getDiscountAmount() { return DiscountAmount; } public PaymentsLookup setDiscountAmount(Double value) { this.DiscountAmount = value; return this; } public Integer getCurrenciesId() { return CurrenciesId; } public PaymentsLookup setCurrenciesId(Integer value) { this.CurrenciesId = value; return this; } public Long getCurrencyRatesId() { return CurrencyRatesId; } public PaymentsLookup setCurrencyRatesId(Long value) { this.CurrencyRatesId = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }