/* Options: Date: 2026-05-19 04:37:05 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MarkTransferTopupPaidRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/transferTicket/markTopupPaid", Verbs="POST") public static class MarkTransferTopupPaidRequest implements IReturn { public String sessionToken = null; public String topupPaymentReference = null; public BigDecimal amountPaid = null; public String getSessionToken() { return sessionToken; } public MarkTransferTopupPaidRequest setSessionToken(String value) { this.sessionToken = value; return this; } public String getTopupPaymentReference() { return topupPaymentReference; } public MarkTransferTopupPaidRequest setTopupPaymentReference(String value) { this.topupPaymentReference = value; return this; } public BigDecimal getAmountPaid() { return amountPaid; } public MarkTransferTopupPaidRequest setAmountPaid(BigDecimal value) { this.amountPaid = value; return this; } private static Object responseType = MarkTransferTopupPaidResult.class; public Object getResponseType() { return responseType; } } public static class MarkTransferTopupPaidResult { public Boolean ok = null; public Integer statusCode = null; public String message = null; public Integer transferLogId = null; public String status = null; public Boolean isOk() { return ok; } public MarkTransferTopupPaidResult setOk(Boolean value) { this.ok = value; return this; } public Integer getStatusCode() { return statusCode; } public MarkTransferTopupPaidResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public MarkTransferTopupPaidResult setMessage(String value) { this.message = value; return this; } public Integer getTransferLogId() { return transferLogId; } public MarkTransferTopupPaidResult setTransferLogId(Integer value) { this.transferLogId = value; return this; } public String getStatus() { return status; } public MarkTransferTopupPaidResult setStatus(String value) { this.status = value; return this; } } }