/* Options: Date: 2026-06-01 15:33:34 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: SignDocumentProxyContent.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/SignDocumentProxyContent/") public static class SignDocumentProxyContent implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public String UserSSN = null; public byte[] DocumentContent = null; public String getClientKey() { return ClientKey; } public SignDocumentProxyContent setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public SignDocumentProxyContent setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public String getUserSSN() { return UserSSN; } public SignDocumentProxyContent setUserSSN(String value) { this.UserSSN = value; return this; } public byte[] getDocumentContent() { return DocumentContent; } public SignDocumentProxyContent setDocumentContent(byte[] value) { this.DocumentContent = value; return this; } private static Object responseType = SignDocumentProxyContentResponse.class; public Object getResponseType() { return responseType; } } public static class SignDocumentProxyContentResponse extends BaseResponse { public byte[] SignedDocumentContent = null; public byte[] getSignedDocumentContent() { return SignedDocumentContent; } public SignDocumentProxyContentResponse setSignedDocumentContent(byte[] value) { this.SignedDocumentContent = value; return this; } } public static class BaseResponse { public Boolean ServiceSuccessResult = null; public String ErrorMesage = null; public Boolean isServiceSuccessResult() { return ServiceSuccessResult; } public BaseResponse setServiceSuccessResult(Boolean value) { this.ServiceSuccessResult = value; return this; } public String getErrorMesage() { return ErrorMesage; } public BaseResponse setErrorMesage(String value) { this.ErrorMesage = value; return this; } } }