/* Options: Date: 2025-10-28 04:18:30 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: DuEnableNotifyRequest.* //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="/duenable/webhook/notify", Verbs="POST") public static class DuEnableNotifyRequest { public PaymentTypeEnum PaymentType = null; public String TransactionId = null; public String Uuid = null; public String PaymentId = null; public Integer Result = null; public String Message = null; public BigDecimal TotalAmount = null; public BigDecimal AdjustmentAmount = null; public BigDecimal TransactionAmount = null; public BigDecimal FeeAmount = null; public String RecurringId = null; public String Signature = null; public PaymentTypeEnum getPaymentType() { return PaymentType; } public DuEnableNotifyRequest setPaymentType(PaymentTypeEnum value) { this.PaymentType = value; return this; } public String getTransactionId() { return TransactionId; } public DuEnableNotifyRequest setTransactionId(String value) { this.TransactionId = value; return this; } public String getUuid() { return Uuid; } public DuEnableNotifyRequest setUuid(String value) { this.Uuid = value; return this; } public String getPaymentId() { return PaymentId; } public DuEnableNotifyRequest setPaymentId(String value) { this.PaymentId = value; return this; } public Integer getResult() { return Result; } public DuEnableNotifyRequest setResult(Integer value) { this.Result = value; return this; } public String getMessage() { return Message; } public DuEnableNotifyRequest setMessage(String value) { this.Message = value; return this; } public BigDecimal getTotalAmount() { return TotalAmount; } public DuEnableNotifyRequest setTotalAmount(BigDecimal value) { this.TotalAmount = value; return this; } public BigDecimal getAdjustmentAmount() { return AdjustmentAmount; } public DuEnableNotifyRequest setAdjustmentAmount(BigDecimal value) { this.AdjustmentAmount = value; return this; } public BigDecimal getTransactionAmount() { return TransactionAmount; } public DuEnableNotifyRequest setTransactionAmount(BigDecimal value) { this.TransactionAmount = value; return this; } public BigDecimal getFeeAmount() { return FeeAmount; } public DuEnableNotifyRequest setFeeAmount(BigDecimal value) { this.FeeAmount = value; return this; } public String getRecurringId() { return RecurringId; } public DuEnableNotifyRequest setRecurringId(String value) { this.RecurringId = value; return this; } public String getSignature() { return Signature; } public DuEnableNotifyRequest setSignature(String value) { this.Signature = value; return this; } } public static enum PaymentTypeEnum { OneTime(1), Recurring(2); private final int value; PaymentTypeEnum(final int intValue) { value = intValue; } public int getValue() { return value; } } }