(* 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: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetRmsUIData.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPI.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ISubscription = abstract SuiteDataSourceInstanceId:Guid with get,set abstract ObjectId:Guid with get,set abstract AlternateKey:String with get,set abstract IgnoreValidation:Boolean with get,set [] [] type GetRmsUIDataResponse() = /// ///Bin Row Version of the last update /// [] member val BinRowVersion:Byte[] = null with get,set /// ///XML string containing the Framework Data /// [] member val FrameworkData:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Retrieves Updated RMS and UI data to be saved to Framework /// [] [] type GetRmsUIData() = interface IReturn /// ///Bin Row Version of the last update /// [] member val BinRowVersion:Byte[] = null with get,set /// ///Suite Data Source Instance Id to determine which licensees data to retrieve. /// [] member val SuiteDataSourceInstanceId:Guid = new Guid() with get,set member val IgnoreValidation:Boolean = new Boolean() with get,set