/* Options: Date: 2025-10-27 22:46:57 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: PaymentRulesLookup.* //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_rules", Verbs="GET") @DataContract public static class PaymentRulesLookup implements IReturn> { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public Long PaymentActionsId = null; @DataMember(Order=4) public Double PaymentValue = null; @DataMember(Order=5) public Double PaymentPercentage = null; @DataMember(Order=6) public Double DiscountAmount = null; @DataMember(Order=7) public Double DiscountPercentage = null; public Integer getTenantsId() { return TenantsId; } public PaymentRulesLookup setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getPaymentActionsId() { return PaymentActionsId; } public PaymentRulesLookup setPaymentActionsId(Long value) { this.PaymentActionsId = value; return this; } public Double getPaymentValue() { return PaymentValue; } public PaymentRulesLookup setPaymentValue(Double value) { this.PaymentValue = value; return this; } public Double getPaymentPercentage() { return PaymentPercentage; } public PaymentRulesLookup setPaymentPercentage(Double value) { this.PaymentPercentage = value; return this; } public Double getDiscountAmount() { return DiscountAmount; } public PaymentRulesLookup setDiscountAmount(Double value) { this.DiscountAmount = value; return this; } public Double getDiscountPercentage() { return DiscountPercentage; } public PaymentRulesLookup setDiscountPercentage(Double value) { this.DiscountPercentage = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }