/* Options: Date: 2025-10-28 02:16:37 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: PaymentRewardsAdd.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/payment_rewards", Verbs="POST") @DataContract public static class PaymentRewardsAdd implements IReturn { @DataMember(Order=2) @Validate(Validator="NotNull") public Integer TenantsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long PaymentActionsId = null; @DataMember(Order=4) @Validate(Validator="NotNull") public String Reward = null; public Integer getTenantsId() { return TenantsId; } public PaymentRewardsAdd setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getPaymentActionsId() { return PaymentActionsId; } public PaymentRewardsAdd setPaymentActionsId(Long value) { this.PaymentActionsId = value; return this; } public String getReward() { return Reward; } public PaymentRewardsAdd setReward(String value) { this.Reward = value; return this; } private static Object responseType = PaymentRewardsAddResponse.class; public Object getResponseType() { return responseType; } } public static class PaymentRewardsAddResponse { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public Long PaymentActionsId = null; @DataMember(Order=4) public String Reward = null; @DataMember(Order=6) public ResponseStatus ResponseStatus = null; public Integer getTenantsId() { return TenantsId; } public PaymentRewardsAddResponse setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getPaymentActionsId() { return PaymentActionsId; } public PaymentRewardsAddResponse setPaymentActionsId(Long value) { this.PaymentActionsId = value; return this; } public String getReward() { return Reward; } public PaymentRewardsAddResponse setReward(String value) { this.Reward = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public PaymentRewardsAddResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }