(* Options: Date: 2026-04-04 06:55:16 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetObjectConnections.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPIModel.Models open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ObjectConnectionModel() = member val ObjectConnectionId:Guid = new Guid() with get,set member val ObjectIdFrom:Guid = new Guid() with get,set member val ObjectFromReference:String = null with get,set member val ObjectToReference:String = null with get,set member val ObjectIdTo:Guid = new Guid() with get,set member val ConnectionMethodId:Guid = new Guid() with get,set member val ObjectFromName:String = null with get,set member val ObjectToName:String = null with get,set member val RecordStatus:String = null with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GetObjectConnectionsResponse() = member val ObjectConnections:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get object connections for the specified object and connection method. /// [] [] [] [] type GetObjectConnections() = interface IReturn /// ///'From' object ID in the connection. /// [] member val FromObjectId:Guid = new Guid() with get,set /// ///'To' object ID in the connection. /// [] member val ToObjectId:Guid = new Guid() with get,set /// ///Guid representing the Connection Method to use to connect the objects with. /// [] member val RmsTableCtxIdConnectionMethod:Guid = new Guid() with get,set /// ///Status of object Connections to retrieve, if not specified active connections are retrieved by default. /// [] member val RecordStatus:String = null with get,set