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