' Options:
'Date: 2026-04-04 06:54:31
'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: GetObjectReads.*
'''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 ObjectAccessModel
'''
'''Object Access Read Id.
'''
Public Overridable Property ObjectReadId As Guid
'''
'''Object Id viewing the specified Object.
'''
Public Overridable Property ViewingObjectId As Guid
'''
'''Name of the object viewing the specified Object.
'''
Public Overridable Property ViewingObjectName As String
'''
'''Name of the object viewing the specified Object.
'''
Public Overridable Property ViewingObjectPrimaryImageUrl As String
'''
'''Id of the object being viewed.
'''
Public Overridable Property ViewedObjectId As Guid
'''
'''Name of the object being viewed.
'''
Public Overridable Property ViewedObjectName As String
'''
'''Date and Time of object read
'''
Public Overridable Property TimeRead As Date?
'''
'''Date and Time object started watching the specified object.
'''
Public Overridable Property TimeStartWatching As Date?
'''
'''Date and Time of object being flagged.
'''
Public Overridable Property Flagged As Date
End Class
End Namespace
Namespace Eros.Saguna.Common.WebAPIModel.ServiceModels
'''
'''Get reads (object access) for the specified object.
'''
Public Partial Class GetObjectReads
Implements IReturn(Of GetObjectReadsResponse)
'''
'''Object Id to get object access reads for
'''
Public Overridable Property ObjectId As Guid
End Class
Public Partial Class GetObjectReadsResponse
Public Overridable Property ObjectReads As List(Of ObjectAccessModel)
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