' Options:
'Date: 2026-04-04 08:37:28
'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: GetObjectContactConnections.*
'''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 ContactSummaryModel
'''
'''Contact linked to the profile
'''
Public Overridable Property ContactId As Guid
'''
'''Full name of the contact linked to the profile
'''
Public Overridable Property ContactFullName As String
'''
'''Email Address of the contact linked to the profile
'''
Public Overridable Property EmailAddress As String
'''
'''Mobile Number of the contact linked to the profile
'''
Public Overridable Property MobileNumber As String
'''
'''Primary Phone Number of the contact linked to the profile
'''
Public Overridable Property PhoneNumber As String
'''
'''Type of contact (person, organisation etc.) linked to the profile
'''
Public Overridable Property ContactTypeId As Guid
'''
'''Profile photo of contact linked to the profile
'''
Public Overridable Property ProfilePhotoUrl As String
'''
'''Thumbnail photo of contact linked to the profile
'''
Public Overridable Property ProfilePhotoThumbnailUrl As String
'''
'''Profile description
'''
Public Overridable Property Description As String
'''
'''Employment Industry
'''
Public Overridable Property EmploymentIndustry As String
'''
'''Employment Role
'''
Public Overridable Property EmploymentRole As String
'''
'''Areas of Work
'''
Public Overridable Property EmploymentGeographicArea As String
'''
'''Timezone Name
'''
Public Overridable Property TimezoneName As String
'''
'''The primary address of the contact
'''
Public Overridable Property PrimaryAddress As String
'''
'''Have all connections to the contact been removed?
'''
Public Overridable Property IsRemovedContact As Boolean
End Class
Public Partial Class ObjectContactConnectionModel
Public Overridable Property ObjectContactConnectionId As Guid
Public Overridable Property ContactRoleConnectionId As Guid
Public Overridable Property ObjectId As Guid
Public Overridable Property Contact As ContactSummaryModel
Public Overridable Property RoleId As Guid
Public Overridable Property RoleName As String
Public Overridable Property Created As Date
End Class
End Namespace
Namespace Eros.Saguna.Common.WebAPIModel.ServiceModels
'''
'''Get contact connections for the specified object.
'''
Public Partial Class GetObjectContactConnections
Implements IReturn(Of GetObjectContactConnectionsResponse)
'''
'''Object Id to get contact connections for
'''
Public Overridable Property ObjectId As Guid
End Class
Public Partial Class GetObjectContactConnectionsResponse
Public Overridable Property ContactConnections As List(Of ObjectContactConnectionModel)
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