' Options: 'Date: 2026-04-04 01:03:55 'Version: 8.52 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://pfapi.pstpf.com.au/api ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetObjectConnections.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Eros.Saguna.Common.WebAPIModel.Models Imports Eros.Saguna.Common.WebAPIModel.ServiceModels Namespace Global Namespace Eros.Saguna.Common.WebAPIModel.Models Public Partial Class ObjectConnectionModel Public Overridable Property ObjectConnectionId As Guid Public Overridable Property ObjectIdFrom As Guid Public Overridable Property ObjectFromReference As String Public Overridable Property ObjectToReference As String Public Overridable Property ObjectIdTo As Guid Public Overridable Property ConnectionMethodId As Guid Public Overridable Property ObjectFromName As String Public Overridable Property ObjectToName As String Public Overridable Property RecordStatus As String End Class End Namespace Namespace Eros.Saguna.Common.WebAPIModel.ServiceModels ''' '''Get object connections for the specified object and connection method. ''' Public Partial Class GetObjectConnections Implements IReturn(Of GetObjectConnectionsResponse) ''' ''''From' object ID in the connection. ''' Public Overridable Property FromObjectId As Guid ''' ''''To' object ID in the connection. ''' Public Overridable Property ToObjectId As Guid ''' '''Guid representing the Connection Method to use to connect the objects with. ''' Public Overridable Property RmsTableCtxIdConnectionMethod As Guid ''' '''Status of object Connections to retrieve, if not specified active connections are retrieved by default. ''' Public Overridable Property RecordStatus As String End Class Public Partial Class GetObjectConnectionsResponse Public Overridable Property ObjectConnections As List(Of ObjectConnectionModel) Public Overridable Property ResponseStatus As ResponseStatus End Class End Namespace Namespace ServiceStack Public Partial Class ResponseStatus Implements IMeta Public Overridable Property ErrorCode As String Public Overridable Property Message As String Public Overridable Property StackTrace As String Public Overridable Property Errors As List(Of ResponseError) Public Overridable Property Meta As Dictionary(Of String, String) Implements IMeta.Meta End Class End Namespace End Namespace