(* Options: Date: 2025-09-14 06:41:20 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: SaveObjectStructure.* //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 or Updates an object connection structure. /// [] [] type SaveObjectStructure() = interface IReturn /// ///Guid representing the external systems datasource information. /// [] member val SuiteDataSourceInstanceId:Guid = new Guid() with get,set /// ///The unique key that represents the connection structure object on the external system. /// [] member val AlternateKey:String = null with get,set /// ///Guid of the connection structure 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 /// ///Connection Structure RmsTableCtxId. /// [] member val RmsTableCtxId:Guid = new Guid() with get,set member val IgnoreValidation:Boolean = new Boolean() with get,set /// ///Id of the Connection Structure Definition. /// [] member val StructureDefinitionId:Guid = new Guid() with get,set /// ///Id of the Structure Type. /// [] member val StructureTypeId:Guid = new Guid() with get,set /// ///XML for the children in the structure for the object indicated via alternateKey/objectId. /// [] member val StructureDefinitionXml:String = null with get,set /// ///Connection Structure Name. /// [] member val Name:String = null with get,set /// ///Connection Structure Reference. /// [] member val Reference:String = null with get,set member val LicenseeId:Guid = new Guid() with get,set member val SessionId:Guid = new Guid() with get,set