/* Options: Date: 2026-06-01 15:33:39 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: SetSignDocumentAtributes.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/SetSignDocumentAtributes/{ClientKey}") public static class SetSignDocumentAtributes implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public Long DocID = null; public HashMap Attributes = null; public String getClientKey() { return ClientKey; } public SetSignDocumentAtributes setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public SetSignDocumentAtributes setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public Long getDocID() { return DocID; } public SetSignDocumentAtributes setDocID(Long value) { this.DocID = value; return this; } public HashMap getAttributes() { return Attributes; } public SetSignDocumentAtributes setAttributes(HashMap value) { this.Attributes = value; return this; } private static Object responseType = SetSignDocumentAtributesResponse.class; public Object getResponseType() { return responseType; } } public static class SetSignDocumentAtributesResponse { public Boolean Result = null; public Boolean ServiceSuccessResult = null; public String ErrorMesage = null; public Boolean isResult() { return Result; } public SetSignDocumentAtributesResponse setResult(Boolean value) { this.Result = value; return this; } public Boolean isServiceSuccessResult() { return ServiceSuccessResult; } public SetSignDocumentAtributesResponse setServiceSuccessResult(Boolean value) { this.ServiceSuccessResult = value; return this; } public String getErrorMesage() { return ErrorMesage; } public SetSignDocumentAtributesResponse setErrorMesage(String value) { this.ErrorMesage = value; return this; } } }