/* Options: Date: 2026-06-01 15:35:11 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetDocumentFlowInfo.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Security.Cryptography.X509Certificates; using System.Xml; using DaB.Imzager.Services.ServiceModel; namespace DaB.Imzager.Services.ServiceModel { public partial class DocumentFlowInfo { public DocumentFlowInfo() { Signers = new List{}; } public virtual bool FlowIsExist { get; set; } public virtual bool FlowIsAvtice { get; set; } public virtual bool FlowIsCompleted { get; set; } public virtual long DocumentID { get; set; } public virtual string DoumentName { get; set; } public virtual string FlowStatus { get; set; } public virtual List Signers { get; set; } } public partial class FlowSignerInfo { public virtual string Status { get; set; } public virtual string FlowOrder { get; set; } public virtual string UserName { get; set; } public virtual string UserSsn { get; set; } public virtual DateTime ApproveDate { get; set; } public virtual string SignerType { get; set; } } [Route("/GetDocumentFlowInfo/{ClientKey}")] public partial class GetDocumentFlowInfo : IReturn { public virtual string ClientKey { get; set; } public virtual string AuthorizationID { get; set; } public virtual long DocID { get; set; } } public partial class GetDocumentFlowInfoResponse { public virtual DocumentFlowInfo Result { get; set; } public virtual bool ServiceSuccessResult { get; set; } public virtual string ErrorMesage { get; set; } } }