/* Options: Date: 2026-05-19 04:33:27 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: GetTopupSessionRequest.* //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/topupSession/{Token}", Verbs="GET") public static class GetTopupSessionRequest implements IReturn { public String token = null; public String getToken() { return token; } public GetTopupSessionRequest setToken(String value) { this.token = value; return this; } private static Object responseType = GetTopupSessionResult.class; public Object getResponseType() { return responseType; } } public static class GetTopupSessionResult { public Boolean ok = null; public Integer statusCode = null; public String message = null; public String status = null; public Integer transferLogId = null; public BigDecimal amountIsk = null; public String fromEventName = null; public String toEventName = null; public Date toEventTimeOfEvent = null; public Date expiresAt = null; public String paymentPhoneNumber = null; public Boolean isOk() { return ok; } public GetTopupSessionResult setOk(Boolean value) { this.ok = value; return this; } public Integer getStatusCode() { return statusCode; } public GetTopupSessionResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public GetTopupSessionResult setMessage(String value) { this.message = value; return this; } public String getStatus() { return status; } public GetTopupSessionResult setStatus(String value) { this.status = value; return this; } public Integer getTransferLogId() { return transferLogId; } public GetTopupSessionResult setTransferLogId(Integer value) { this.transferLogId = value; return this; } public BigDecimal getAmountIsk() { return amountIsk; } public GetTopupSessionResult setAmountIsk(BigDecimal value) { this.amountIsk = value; return this; } public String getFromEventName() { return fromEventName; } public GetTopupSessionResult setFromEventName(String value) { this.fromEventName = value; return this; } public String getToEventName() { return toEventName; } public GetTopupSessionResult setToEventName(String value) { this.toEventName = value; return this; } public Date getToEventTimeOfEvent() { return toEventTimeOfEvent; } public GetTopupSessionResult setToEventTimeOfEvent(Date value) { this.toEventTimeOfEvent = value; return this; } public Date getExpiresAt() { return expiresAt; } public GetTopupSessionResult setExpiresAt(Date value) { this.expiresAt = value; return this; } public String getPaymentPhoneNumber() { return paymentPhoneNumber; } public GetTopupSessionResult setPaymentPhoneNumber(String value) { this.paymentPhoneNumber = value; return this; } } }