' Options:
'Date: 2026-04-04 06:43:44
'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: GetConnectionRequests.*
'''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.Subtle.Canvara.WebAPIModel.ServiceModel
Namespace Global
Namespace Eros.Saguna.Common.WebAPIModel.Models
Public Partial Class ContactConnectionModel
'''
'''Connection Id (if applicable)
'''
Public Overridable Property ConnectionId As Guid?
'''
'''Connection Request Id (if applicable)
'''
Public Overridable Property ConnectionRequestId As Guid?
'''
'''Details of the contact
'''
Public Overridable Property Contact As ContactSummaryModel
'''
'''Contact's role Id in the connection
'''
Public Overridable Property ContactRoleId As Guid
'''
'''Contact's role name in the connection
'''
Public Overridable Property ContactRoleName As String
'''
'''Requestor Contact Id
'''
Public Overridable Property RequestorContactId As Guid
'''
'''Requestor Contact Name
'''
Public Overridable Property RequestorContactName As String
'''
'''Requestor contact's role Id in the connection
'''
Public Overridable Property RequestorRoleId As Guid
'''
'''Requestor's role name in the connection
'''
Public Overridable Property RequestorRoleName As String
'''
'''Primary role in the connection to display
'''
Public Overridable Property PrimaryRoleName As String
'''
'''Connection Status Id
'''
Public Overridable Property ConnectionStatusId As Guid
'''
'''Connection Status Name
'''
Public Overridable Property ConnectionStatusName As String
'''
'''Is this a pending connection request?
'''
Public Overridable Property IsConnectionRequest As Boolean
'''
'''Is this an incoming connection request?
'''
Public Overridable Property IsIncoming As Boolean
Public Overridable Property FromDate As Date?
'''
'''Details of the contact suggesting this connection
'''
Public Overridable Property SuggesterContact As ContactSummaryModel
'''
'''Can this connection be cancelled?
'''
Public Overridable Property AllowCancel As Boolean
'''
'''Can this connection be removed?
'''
Public Overridable Property AllowRemove As Boolean
End Class
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
End Namespace
Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
Public Partial Class GetConnectionRequests
Implements IReturn(Of GetConnectionRequestsResponse)
'''
'''Contact to get connection requests for
'''
Public Overridable Property ContactId As Guid
'''
'''Filter connection requests for the specified contact types
'''
Public Overridable Property ContactTypes As List(Of Guid) = New List(Of Guid)
'''
'''Include ignored connection requests?
'''
Public Overridable Property IncludeIgnoredRequests As Boolean
End Class
Public Partial Class GetConnectionRequestsResponse
Public Overridable Property ConnectionRequests As List(Of ContactConnectionModel)
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