/* Options: Date: 2026-06-01 15:33:38 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: AddSigner.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/AddSigner/{ClientKey}") public static class AddSigner implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public String DocumentId = null; public String UserName = null; public String UserSSN = null; public String SignType = null; public String getClientKey() { return ClientKey; } public AddSigner setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public AddSigner setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public String getDocumentId() { return DocumentId; } public AddSigner setDocumentId(String value) { this.DocumentId = value; return this; } public String getUserName() { return UserName; } public AddSigner setUserName(String value) { this.UserName = value; return this; } public String getUserSSN() { return UserSSN; } public AddSigner setUserSSN(String value) { this.UserSSN = value; return this; } public String getSignType() { return SignType; } public AddSigner setSignType(String value) { this.SignType = value; return this; } private static Object responseType = AddSignerResponse.class; public Object getResponseType() { return responseType; } } public static class AddSignerResponse { public Boolean Result = null; public Boolean ServiceSuccessResult = null; public String ErrorMesage = null; public Boolean isResult() { return Result; } public AddSignerResponse setResult(Boolean value) { this.Result = value; return this; } public Boolean isServiceSuccessResult() { return ServiceSuccessResult; } public AddSignerResponse setServiceSuccessResult(Boolean value) { this.ServiceSuccessResult = value; return this; } public String getErrorMesage() { return ErrorMesage; } public AddSignerResponse setErrorMesage(String value) { this.ErrorMesage = value; return this; } } }