/* Options: Date: 2026-06-01 15:33:58 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: GetDocumentFlowInfo.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/GetDocumentFlowInfo/{ClientKey}") public static class GetDocumentFlowInfo implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public Long DocID = null; public String getClientKey() { return ClientKey; } public GetDocumentFlowInfo setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public GetDocumentFlowInfo setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public Long getDocID() { return DocID; } public GetDocumentFlowInfo setDocID(Long value) { this.DocID = value; return this; } private static Object responseType = GetDocumentFlowInfoResponse.class; public Object getResponseType() { return responseType; } } public static class GetDocumentFlowInfoResponse { public DocumentFlowInfo Result = null; public Boolean ServiceSuccessResult = null; public String ErrorMesage = null; public DocumentFlowInfo getResult() { return Result; } public GetDocumentFlowInfoResponse setResult(DocumentFlowInfo value) { this.Result = value; return this; } public Boolean isServiceSuccessResult() { return ServiceSuccessResult; } public GetDocumentFlowInfoResponse setServiceSuccessResult(Boolean value) { this.ServiceSuccessResult = value; return this; } public String getErrorMesage() { return ErrorMesage; } public GetDocumentFlowInfoResponse setErrorMesage(String value) { this.ErrorMesage = value; return this; } } public static class DocumentFlowInfo { public Boolean FlowIsExist = null; public Boolean FlowIsAvtice = null; public Boolean FlowIsCompleted = null; public Long DocumentID = null; public String DoumentName = null; public String FlowStatus = null; public ArrayList Signers = null; public Boolean isFlowIsExist() { return FlowIsExist; } public DocumentFlowInfo setFlowIsExist(Boolean value) { this.FlowIsExist = value; return this; } public Boolean isFlowIsAvtice() { return FlowIsAvtice; } public DocumentFlowInfo setFlowIsAvtice(Boolean value) { this.FlowIsAvtice = value; return this; } public Boolean isFlowIsCompleted() { return FlowIsCompleted; } public DocumentFlowInfo setFlowIsCompleted(Boolean value) { this.FlowIsCompleted = value; return this; } public Long getDocumentID() { return DocumentID; } public DocumentFlowInfo setDocumentID(Long value) { this.DocumentID = value; return this; } public String getDoumentName() { return DoumentName; } public DocumentFlowInfo setDoumentName(String value) { this.DoumentName = value; return this; } public String getFlowStatus() { return FlowStatus; } public DocumentFlowInfo setFlowStatus(String value) { this.FlowStatus = value; return this; } public ArrayList getSigners() { return Signers; } public DocumentFlowInfo setSigners(ArrayList value) { this.Signers = value; return this; } } public static class FlowSignerInfo { public String Status = null; public String FlowOrder = null; public String UserName = null; public String UserSsn = null; public Date ApproveDate = null; public String SignerType = null; public String getStatus() { return Status; } public FlowSignerInfo setStatus(String value) { this.Status = value; return this; } public String getFlowOrder() { return FlowOrder; } public FlowSignerInfo setFlowOrder(String value) { this.FlowOrder = value; return this; } public String getUserName() { return UserName; } public FlowSignerInfo setUserName(String value) { this.UserName = value; return this; } public String getUserSsn() { return UserSsn; } public FlowSignerInfo setUserSsn(String value) { this.UserSsn = value; return this; } public Date getApproveDate() { return ApproveDate; } public FlowSignerInfo setApproveDate(Date value) { this.ApproveDate = value; return this; } public String getSignerType() { return SignerType; } public FlowSignerInfo setSignerType(String value) { this.SignerType = value; return this; } } }