(* Options: Date: 2025-09-14 07:04:05 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SaveCommunication.* //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 /// ///Inserts a communication that is not already saved. /// [] [] type SaveCommunication() = interface IReturn /// ///Guid representing the external systems datasource information. /// [] member val SuiteDataSourceInstanceId:Guid = new Guid() with get,set /// ///The unique key that represents the communication on the external system. /// [] member val AlternateKey:String = null with get,set /// ///Guid of the communication object within Eros. If ObjectId is known, the external system may pass this insted of the alternate key. /// [] member val ObjectId:Guid = new Guid() with get,set member val IgnoreValidation:Boolean = new Boolean() with get,set /// ///Communication Status Id. /// [] member val CommunicationStatusId:Guid = new Guid() with get,set /// ///XML containing the content of the communication. /// [] member val CommunicationXml:String = null with get,set /// ///Guid of the object this communication is related to. /// [] member val ObjectIdPrepositional:Guid = new Guid() with get,set