/* Options: Date: 2026-06-01 15:33:40 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SignHashWithData.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/SignHashWithData/{ClientKey}") public static class SignHashWithData implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public String UserSSN = null; public String HashData = null; public String Message = null; public String getClientKey() { return ClientKey; } public SignHashWithData setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public SignHashWithData setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public String getUserSSN() { return UserSSN; } public SignHashWithData setUserSSN(String value) { this.UserSSN = value; return this; } public String getHashData() { return HashData; } public SignHashWithData setHashData(String value) { this.HashData = value; return this; } public String getMessage() { return Message; } public SignHashWithData setMessage(String value) { this.Message = value; return this; } private static Object responseType = SignHashWithDataResponse.class; public Object getResponseType() { return responseType; } } public static class SignHashWithDataResponse { public byte[] Result = null; public Boolean ServiceSuccessResult = null; public String ErrorMesage = null; public byte[] getResult() { return Result; } public SignHashWithDataResponse setResult(byte[] value) { this.Result = value; return this; } public Boolean isServiceSuccessResult() { return ServiceSuccessResult; } public SignHashWithDataResponse setServiceSuccessResult(Boolean value) { this.ServiceSuccessResult = value; return this; } public String getErrorMesage() { return ErrorMesage; } public SignHashWithDataResponse setErrorMesage(String value) { this.ErrorMesage = value; return this; } } }