' Options:
'Date: 2026-04-04 01:03:32
'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: SearchContactsForRole.*
'''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
End Namespace
Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
'''
'''Search contacts by Name or Email Address, by Role Groups, or by Roles
'''
Public Partial Class SearchContactsForRole
Implements IReturn(Of SearchContactsForRoleResponse)
'''
'''Search type: by Name or Email Address, by Role Groups, or by Roles
'''
Public Overridable Property SearchBy As Guid
'''
'''Roles that contacts are connected to.
'''
", Description:="Roles that contacts are connected to.", Name:="Roles")>
Public Overridable Property Roles As List(Of Guid)
'''
'''Role Groups that contacts are connected to.
'''
", Description:="Role Groups that contacts are connected to.", Name:="RoleGroups")>
Public Overridable Property RoleGroups As List(Of Guid)
'''
'''For Search by Name or Email Address, filters contact results by this text value.
'''
Public Overridable Property SearchText As String
'''
'''Excludes contacts already connected to this role.
'''
Public Overridable Property ExcludeRole As Guid
'''
'''Filters contact results by contact type(s) provided, e.g. Real Persons, Organisations etc. Defaults to real person.
'''
", Description:="Filters contact results by contact type(s) provided, e.g. Real Persons, Organisations etc. Defaults to real person.", Name:="ContactTypes")>
Public Overridable Property ContactTypes As List(Of Guid)
'''
'''Determines whether the contact details (Email, mobile number etc.) to be returned.
'''
Public Overridable Property IncludeDetails As Boolean
End Class
Public Partial Class SearchContactsForRoleResponse
Public Overridable Property Contacts As List(Of ContactSummaryModel)
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