(* Options: Date: 2025-09-14 06:42:21 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: SaveObjectDynamicContent.* //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 DynamicContentModel() = /// ///Dynamic Content Definition indicating the content type. /// [] member val DynamicContentDefinitionId:Guid = new Guid() with get,set /// ///Guid indicating the content format. Not required to be passed. /// [] member val ContentFormatId:Guid = new Guid() with get,set /// ///Actual Content to be added to the object. /// [] member val Content:String = null with get,set /// ///Inserts or Updates dynamic content for an object. /// [] [] type SaveObjectDynamicContent() = interface IReturn /// ///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 member val IgnoreValidation:Boolean = new Boolean() with get,set /// ///Dynamic Content to be added to the object. /// [] member val DynamicContent:DynamicContentModel = null with get,set