/* Options: Date: 2025-10-27 21:54:22 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: PaymentPlanDetailsLookup.* //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="/payment_plan_details", Verbs="GET") @DataContract public static class PaymentPlanDetailsLookup implements IReturn> { @DataMember(Order=2) public Long PaymentPlansId = null; @DataMember(Order=3) public Date PlannedDate = null; @DataMember(Order=4) public Double PlannedAmount = null; @DataMember(Order=5) public Integer PlannedCurrenciesId = null; @DataMember(Order=6) public Long PaymentsId = null; @DataMember(Order=7) public Long StatusCodesId = null; public Long getPaymentPlansId() { return PaymentPlansId; } public PaymentPlanDetailsLookup setPaymentPlansId(Long value) { this.PaymentPlansId = value; return this; } public Date getPlannedDate() { return PlannedDate; } public PaymentPlanDetailsLookup setPlannedDate(Date value) { this.PlannedDate = value; return this; } public Double getPlannedAmount() { return PlannedAmount; } public PaymentPlanDetailsLookup setPlannedAmount(Double value) { this.PlannedAmount = value; return this; } public Integer getPlannedCurrenciesId() { return PlannedCurrenciesId; } public PaymentPlanDetailsLookup setPlannedCurrenciesId(Integer value) { this.PlannedCurrenciesId = value; return this; } public Long getPaymentsId() { return PaymentsId; } public PaymentPlanDetailsLookup setPaymentsId(Long value) { this.PaymentsId = value; return this; } public Long getStatusCodesId() { return StatusCodesId; } public PaymentPlanDetailsLookup setStatusCodesId(Long value) { this.StatusCodesId = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }