' Options: 'Date: 2026-04-04 02:57:16 '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: GetContactRoleDetails.* '''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 ListItemFilterModel Public Overridable Property ListItemFilterId As Guid Public Overridable Property FilterName As String Public Overridable Property ListId As Guid Public Overridable Property ListItemId As Guid Public Overridable Property ListItemIsInFilter As Boolean End Class Public Partial Class ObjectShareModel Public Overridable Property ObjectShareId As Guid Public Overridable Property ObjectId As Guid Public Overridable Property ObjectName As String Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property Reference As String Public Overridable Property ContactId As Guid Public Overridable Property ContactName As String Public Overridable Property ContactType As String Public Overridable Property ContactImageUrlPrimary As String Public Overridable Property ContactImageUrlPrimaryThmbnail As String Public Overridable Property ShareStatusId As Guid Public Overridable Property ShareStatusName As String 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 Public Partial Class UserProfileSummaryModel ''' '''User Profile Id ''' Public Overridable Property UserProfileId As Guid ''' '''User linked to the profile ''' Public Overridable Property UserId As Guid ''' '''Contact linked to the profile ''' Public Overridable Property ContactId As Guid ''' '''User linked to the profile ''' Public Overridable Property UserName As String ''' '''User Profile Name ''' Public Overridable Property ProfileName As String ''' '''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 ''' '''Email signature of the contact linked to the profile ''' Public Overridable Property EmailSignature As String ''' '''Mobile number of the contact linked to the profile ''' Public Overridable Property MobileNumber As String ''' '''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 ''' '''Type of contact (person, organisation etc.) linked to the profile ''' Public Overridable Property ContactTypeName As String ''' '''First name of the contact linked to the profile ''' Public Overridable Property FirstName As String ''' '''Surname of the contact linked to the profile ''' Public Overridable Property Surname As String ''' '''Title of contact linked to the profile ''' Public Overridable Property Title As String ''' '''Legal name of contact linked to the profile ''' Public Overridable Property LegalName As String ''' '''Trading name of contact linked to the profile ''' Public Overridable Property TradingName As String ''' '''Australian Business Number ''' Public Overridable Property Abn As String ''' '''Australian Company Number ''' Public Overridable Property Acn As String ''' '''Australian Registered Body Number ''' Public Overridable Property Arbn As String ''' '''Indicates if the Contact is registered for GST. ''' Public Overridable Property GstRegistered As Boolean ''' '''True if english is a secondary language for the contact. ''' Public Overridable Property ESL As Boolean ''' '''Language that is the primary language for the contact. ''' Public Overridable Property Language As String ''' '''True if an interpreter is required. ''' Public Overridable Property InterpreterRequired As Boolean ''' '''Licensee specific notes about the contact. ''' Public Overridable Property LicenseeNotes As String ''' '''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 photo id of contact linked to the profile ''' Public Overridable Property ProfileImageId As Guid ''' '''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 ''' '''The contacts timezone. ''' Public Overridable Property Timezone As Guid ''' '''Timezone Name ''' Public Overridable Property TimezoneName As String ''' '''The primary address of the contact ''' Public Overridable Property PrimaryAddress As String ''' '''Is this an active contact? Or an inactive contact (deleted account)? ''' Public Overridable Property IsActiveContact As Boolean End Class Public Partial Class ViewRoleModel Inherits PagedModel ''' '''Role Id ''' Public Overridable Property RoleId As Guid ''' '''Role Name ''' Public Overridable Property RoleName As String ''' '''Role Connection Definition Id ''' Public Overridable Property RoleConnectionDefinitionId As Guid ''' '''Contact Types the Role applies to ''' Public Overridable Property ContactTypes As List(Of Guid) ''' '''Does the role require contacts to accept it? ''' Public Overridable Property RequireContactsToAccept As Boolean Public Overridable Property IsPlatformRole As Boolean Public Overridable Property CanAddContacts As Boolean Public Overridable Property CanShareRole As Boolean Public Overridable Property CanEditRole As Boolean Public Overridable Property CanEditContactTypes As Boolean Public Overridable Property Contacts As List(Of UserProfileSummaryModel) Public Overridable Property ShareDetails As IList(Of ObjectShareModel) Public Overridable Property ListItemFilters As List(Of ListItemFilterModel) Public Overridable Property ContactIdOwner As Guid Public Overridable Property TotalItemCount As Integer End Class End Namespace Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel ''' '''Get details of the specified contact role, including details of the contacts and organisations sharing it ''' Public Partial Class GetContactRoleDetails Inherits PagedModel Implements IReturn(Of GetContactRoleDetailsResponse) ''' '''The Contact Role Guid. Records retrieved will belong to this contact. ''' Public Overridable Property ContactRoleId As Guid ''' '''Text filter ''' Public Overridable Property SearchText As String End Class Public Partial Class GetContactRoleDetailsResponse Public Overridable Property ContactRole As ViewRoleModel 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