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