(* Options: Date: 2026-06-22 04:37:35 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: GetCommunicationData.* //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 GetCommunicationDataResponse() = /// ///Bin Row Version of the last update /// [] member val BinRowVersion:Byte[] = null with get,set /// ///Communication Data string (compressed/zipped) /// [] member val Communications:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Retrieves communications from the Communication database to be saved to Framework /// [] [] type GetCommunicationData() = 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 /// ///Batch Call Number. /// [] member val BatchNumber:Int32 = new Int32() with get,set /// ///Number of records to retrieve per call. /// [] member val BatchSize:Int32 = new Int32() with get,set member val IgnoreValidation:Boolean = new Boolean() with get,set