' Options: 'Date: 2026-04-04 06:46:05 '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: GetContactsManagingOrgProfile.* '''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 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 End Namespace Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel ''' '''Gets a list of contacts that are currently managing the userProfileId supplied. ''' Public Partial Class GetContactsManagingOrgProfile Implements IReturn(Of GetContactsManagingOrgProfileResponse) ''' '''Id of the Organisation Profile record being managed. ''' Public Overridable Property UserProfileId As Guid End Class Public Partial Class GetContactsManagingOrgProfileResponse ''' '''A list of contacts eligible, and managing the passed in Organisation Profile. ''' ", Description:="A list of contacts eligible, and managing the passed in Organisation Profile.", Name:="ContactsManagingOrgProfile")> Public Overridable Property ContactsNotManagingOrgProfile As List(Of UserProfileSummaryModel) Public Overridable Property TotalContactsManagingOrgProfile As Integer ''' '''Service Stack Response Status. ''' 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