/* Options: Date: 2026-06-22 04:37:27 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://gatewayframeworkapi.pstpf.com.au/api //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: False //ExportValueTypes: False IncludeTypes: GetWorkflowData.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Eros.Saguna.Common.WebAPI.ServiceModel; using FrameworkApi.Models; namespace Eros.Saguna.Common.WebAPI.ServiceModel { public partial interface ISubscription { Guid SuiteDataSourceInstanceId { get; set; } Guid ObjectId { get; set; } string AlternateKey { get; set; } bool IgnoreValidation { get; set; } } } namespace FrameworkApi.Models { /// ///Retrieves Updated workflow data to be saved to Framework /// [Api(Description="Retrieves Updated workflow data to be saved to Framework")] public partial class GetWorkflowData : IReturn, ISubscription { /// ///Bin Row Version of the last update /// [ApiMember(DataType="byte[]", Description="Bin Row Version of the last update", Name="BinRowVersion")] public virtual byte[] BinRowVersion { get; set; } /// ///Suite Data Source Instance Id to determine which licensees data to retrieve. /// [ApiMember(DataType="Guid", Description="Suite Data Source Instance Id to determine which licensees data to retrieve.", Name="SuiteDataSourceInstanceId")] public virtual Guid SuiteDataSourceInstanceId { get; set; } public virtual bool IgnoreValidation { get; set; } } [ApiResponse(Description="Eros workflow data for synching to Framework")] public partial class GetWorkflowDataResponse { /// ///Bin Row Version of the last update /// [ApiMember(Description="Bin Row Version of the last update")] public virtual byte[] BinRowVersion { get; set; } /// ///XML string containing the workflow Data /// [ApiMember(Description="XML string containing the workflow Data")] public virtual string WorkflowData { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } }