' Options:
'Date: 2026-04-04 08:37:38
'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: GetPagedContactsInRole.*
'''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 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 PagedModel
'''
'''Page Number to retrieve
'''
Public Overridable Property PageNumber As Integer
'''
'''Number of records to retrieve
'''
Public Overridable Property PageSize As Integer
'''
'''Index of field to sort results by
'''
Public Overridable Property SortIndex As Integer
'''
'''Sort Order - Ascending or Descending
'''
Public Overridable Property SortOrder As SortOrder
End Class
Public Enum SortOrder
Ascending
Descending
End Enum
End Namespace
Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
Public Partial Class GetPagedContactsInRole
Inherits PagedModel
Implements IReturn(Of GetSlimContactsResponse)
'''
'''Get contacts connected to the current licensee in the specified role
'''
Public Overridable Property RoleId As Guid
'''
'''Get contacts of the specified type
'''
Public Overridable Property ContactTypes As List(Of Guid)
'''
'''Contact statuses to search for, i.e. Real and/or Virtual
'''
", Description:="Contact statuses to search for, i.e. Real and/or Virtual", IsRequired:=true, Name:="Statuses")>
Public Overridable Property Statuses As List(Of Guid) = New List(Of Guid)
'''
'''Text to filter contacts on. searches for a contact with matches to the string.
'''
Public Overridable Property SearchText As String
'''
'''If you want just bare-bones contact info set this to false, if not specified it defaults to true.
'''
Public Overridable Property IncludeDetails As Boolean?
End Class
Public Partial Class GetSlimContactsResponse
Public Overridable Property Contacts As List(Of ContactSummaryModel)
Public Overridable Property TotalContacts As Integer
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