' Options: 'Date: 2026-04-04 03:06:49 '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: GetObjectSubscriptions.* '''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.Subtle.Canvara.WebAPIModel.Models Imports Eros.Subtle.Canvara.WebAPIModel.ServiceModel Namespace Global Namespace Eros.Subtle.Canvara.WebAPIModel.Models Public Partial Class ObjectSubscriptionDetailModel ''' '''ID for the objectSubscription record. ''' Public Overridable Property ObjectSubscriptionId As Guid ''' '''Id of the Suite DataSource Instance Id. ''' Public Overridable Property SuiteDataSourceInstanceId As Guid ''' '''Suite DataSource Instance Name. ''' Public Overridable Property SuiteDataSourceName As String ''' '''Id indicating the RmsTableCtx of the object. ''' Public Overridable Property RmsTableContextId As Guid ''' '''Id of the integrated object. ''' Public Overridable Property ObjectId As Guid ''' '''Unique Key of this object in the external Data Source. ''' Public Overridable Property AlternateKey As String ''' '''Date the object was integrated. ''' Public Overridable Property CreatedAt As Date ''' '''Record Status of the object subscription. ''' Public Overridable Property RecordStatus As String ''' '''Id of the Suite Instance. ''' Public Overridable Property SuiteInstanceId As Guid ''' '''Suite Instance Name. ''' Public Overridable Property SuiteInstanceName As String End Class End Namespace Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel ''' '''Get object subscriptions for the specified object ''' Public Partial Class GetObjectSubscriptions Implements IReturn(Of GetObjectSubscriptionsResponse) ''' '''Get active/inactive object subscriptions for the specified object ''' Public Overridable Property ObjectId As Guid End Class Public Partial Class GetObjectSubscriptionsResponse Public Overridable Property ObjectSubscriptions As List(Of ObjectSubscriptionDetailModel) 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