/* Options: Date: 2025-10-27 21:50:43 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: PaymentGatewaysEdit.* //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_gateways/{Id}", Verbs="PUT") @DataContract public static class PaymentGatewaysEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long Id = null; @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 Name = null; @DataMember(Order=5) public String ServiceKey = null; @DataMember(Order=6) public String NotifyUrl = null; @DataMember(Order=7) public String RedirectUrl = null; public Long getId() { return Id; } public PaymentGatewaysEdit setId(Long value) { this.Id = value; return this; } public Integer getTenantsId() { return TenantsId; } public PaymentGatewaysEdit setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getPaymentActionsId() { return PaymentActionsId; } public PaymentGatewaysEdit setPaymentActionsId(Long value) { this.PaymentActionsId = value; return this; } public String getName() { return Name; } public PaymentGatewaysEdit setName(String value) { this.Name = value; return this; } public String getServiceKey() { return ServiceKey; } public PaymentGatewaysEdit setServiceKey(String value) { this.ServiceKey = value; return this; } public String getNotifyUrl() { return NotifyUrl; } public PaymentGatewaysEdit setNotifyUrl(String value) { this.NotifyUrl = value; return this; } public String getRedirectUrl() { return RedirectUrl; } public PaymentGatewaysEdit setRedirectUrl(String value) { this.RedirectUrl = value; return this; } private static Object responseType = PaymentGatewaysEditResponse.class; public Object getResponseType() { return responseType; } } public static class PaymentGatewaysEditResponse { @DataMember(Order=1) public Long Id = null; @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public Long PaymentActionsId = null; @DataMember(Order=4) public String Name = null; @DataMember(Order=5) public String ServiceKey = null; @DataMember(Order=6) public String NotifyUrl = null; @DataMember(Order=7) public String RedirectUrl = null; @DataMember(Order=9) public ResponseStatus ResponseStatus = null; public Long getId() { return Id; } public PaymentGatewaysEditResponse setId(Long value) { this.Id = value; return this; } public Integer getTenantsId() { return TenantsId; } public PaymentGatewaysEditResponse setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getPaymentActionsId() { return PaymentActionsId; } public PaymentGatewaysEditResponse setPaymentActionsId(Long value) { this.PaymentActionsId = value; return this; } public String getName() { return Name; } public PaymentGatewaysEditResponse setName(String value) { this.Name = value; return this; } public String getServiceKey() { return ServiceKey; } public PaymentGatewaysEditResponse setServiceKey(String value) { this.ServiceKey = value; return this; } public String getNotifyUrl() { return NotifyUrl; } public PaymentGatewaysEditResponse setNotifyUrl(String value) { this.NotifyUrl = value; return this; } public String getRedirectUrl() { return RedirectUrl; } public PaymentGatewaysEditResponse setRedirectUrl(String value) { this.RedirectUrl = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public PaymentGatewaysEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }