/* Options: Date: 2026-06-22 04:37:36 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: GetRmsUIData.* //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 RMS and UI data to be saved to Framework /// [Api(Description="Retrieves Updated RMS and UI data to be saved to Framework")] public partial class GetRmsUIData : 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 RMS and UI Data for synching to Framework")] public partial class GetRmsUIDataResponse { /// ///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; } /// ///XML string containing the Framework Data /// [ApiMember(DataType="string", Description="XML string containing the Framework Data", Name="FrameworkData")] public virtual string FrameworkData { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } }