(* Options: Date: 2025-09-14 02:28:57 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: SaveObjectConnection.* //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 SubscriptionObjectModel() = /// ///Guid representing the external systems datasource information. /// [] member val SuiteDataSourceInstanceId:Guid = new Guid() with get,set /// ///The unique key that represents the object on the external system. /// [] member val AlternateKey:String = null with get,set /// ///Guid of the object within Eros. If ObjectId is known, the external system may pass this instead of the alternate key. /// [] member val ObjectId:Guid = new Guid() with get,set /// ///Guid of the RmsTableCtx within Eros. This is used if the alternate key is provided to identify the object to update. /// [] member val RmsTableCtxId:Guid = new Guid() with get,set /// ///Validation ensures that this object has a value in alternateKey or ObjectId, ignoring validation skips this requirement. /// [] member val IgnoreValidation:Boolean = new Boolean() with get,set /// ///Inserts an object connection between 2 valid objects. /// [] [] type SaveObjectConnection() = interface IReturn /// ///Information to allow retrieval of the object from Eros that will be the 'From' object in the connection. /// [] member val FromObject:SubscriptionObjectModel = null with get,set /// ///Information to allow retrieval of the object from Eros that will be the 'To' object in the connection. /// [] member val ToObject:SubscriptionObjectModel = null with get,set /// ///Guid representing the Connection Method to use to connect the objects with. /// [] member val RmsTableCtxIdConnectionMethod:Guid = new Guid() with get,set