/* Options: Date: 2025-05-06 13:30:20 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SystemInfoRequest.* //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="/system/info", Verbs="GET POST") public static class SystemInfoRequest implements IReturn { public String phoneFullNumber = null; public String deviceId = null; public Long requestUnixUTCTimeStamp = null; public RequestSignature signature = null; public String getPhoneFullNumber() { return phoneFullNumber; } public SystemInfoRequest setPhoneFullNumber(String value) { this.phoneFullNumber = value; return this; } public String getDeviceId() { return deviceId; } public SystemInfoRequest setDeviceId(String value) { this.deviceId = value; return this; } public Long getRequestUnixUTCTimeStamp() { return requestUnixUTCTimeStamp; } public SystemInfoRequest setRequestUnixUTCTimeStamp(Long value) { this.requestUnixUTCTimeStamp = value; return this; } public RequestSignature getSignature() { return signature; } public SystemInfoRequest setSignature(RequestSignature value) { this.signature = value; return this; } private static Object responseType = SystemInfo.class; public Object getResponseType() { return responseType; } } public static class SystemInfo { public String redirectTo = null; public Boolean acceptingPayments = null; public Boolean canSaveCard = null; public String errorResponse = null; public Integer minVersion = null; public String getRedirectTo() { return redirectTo; } public SystemInfo setRedirectTo(String value) { this.redirectTo = value; return this; } public Boolean isAcceptingPayments() { return acceptingPayments; } public SystemInfo setAcceptingPayments(Boolean value) { this.acceptingPayments = value; return this; } public Boolean isCanSaveCard() { return canSaveCard; } public SystemInfo setCanSaveCard(Boolean value) { this.canSaveCard = value; return this; } public String getErrorResponse() { return errorResponse; } public SystemInfo setErrorResponse(String value) { this.errorResponse = value; return this; } public Integer getMinVersion() { return minVersion; } public SystemInfo setMinVersion(Integer value) { this.minVersion = value; return this; } } public static class RequestSignature { public String systemId = null; public String systemSecret = null; public String signature = null; public String getSystemId() { return systemId; } public RequestSignature setSystemId(String value) { this.systemId = value; return this; } public String getSystemSecret() { return systemSecret; } public RequestSignature setSystemSecret(String value) { this.systemSecret = value; return this; } public String getSignature() { return signature; } public RequestSignature setSignature(String value) { this.signature = value; return this; } } }