/* Options: Date: 2026-06-01 15:11:29 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SignAndSendRemMessage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/SignAndSendRemMessage") public static class SignAndSendRemMessage implements IReturn { public String AuthorizationID = null; public String SignerSsn = null; public String Pin = null; public Long RemID = null; public String getAuthorizationID() { return AuthorizationID; } public SignAndSendRemMessage setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public String getSignerSsn() { return SignerSsn; } public SignAndSendRemMessage setSignerSsn(String value) { this.SignerSsn = value; return this; } public String getPin() { return Pin; } public SignAndSendRemMessage setPin(String value) { this.Pin = value; return this; } public Long getRemID() { return RemID; } public SignAndSendRemMessage setRemID(Long value) { this.RemID = value; return this; } private static Object responseType = SignAndSendRemMessageResponse.class; public Object getResponseType() { return responseType; } } public static class SignAndSendRemMessageResponse extends BaseResponse { } public static class BaseResponse { public Boolean Result = null; public Integer ErrorCode = null; public String ErrorMessage = null; public Boolean isResult() { return Result; } public BaseResponse setResult(Boolean value) { this.Result = value; return this; } public Integer getErrorCode() { return ErrorCode; } public BaseResponse setErrorCode(Integer value) { this.ErrorCode = value; return this; } public String getErrorMessage() { return ErrorMessage; } public BaseResponse setErrorMessage(String value) { this.ErrorMessage = value; return this; } } }