' Options: 'Date: 2026-04-04 06:48:49 '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: UpdateContactGroup.* '''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 ContactGroupConnectionModel Inherits UserProfileSummaryModel ''' '''Contact Group Id ''' Public Overridable Property ContactGroupId As Guid ''' '''Connection id of the contact in the group ''' Public Overridable Property ContactGroupConnectionId As Guid ''' '''The Id of the Role this contact is connected to the group with. ''' Public Overridable Property ConnectionRoleId As Guid ''' '''Order of contacts within a group, the primary contact will have an index of 1. ''' Public Overridable Property Index As Integer ''' '''List of roles that the contact in the contact group has across appliances for e.g. Platform Customer, Nexus customer etc. ''' Public Overridable Property ContactRoles As List(Of RoleModel) End Class Public Partial Class RoleModel ''' '''Role Id ''' Public Overridable Property RoleId As Guid ''' '''Role Name ''' Public Overridable Property RoleName As String ''' '''Is the role a licensee role? ''' Public Overridable Property IsLicenseeRole As Boolean ''' '''Is manage contacts role? ''' Public Overridable Property IsManageContacts As Boolean ''' '''Is the role a Platform role? ''' Public Overridable Property IsPlatformRole As Boolean ''' '''Is the role a services role? ''' Public Overridable Property IsServiceRole As Boolean ''' '''Is the role a customer role? ''' Public Overridable Property IsCustomerRole As Boolean ''' '''Is the role a functional role? ''' Public Overridable Property IsFunctionalRole As Boolean ''' '''Is the role an auto-accept role? ''' Public Overridable Property IsRequestAutoAccepted As Boolean ''' '''Suite that the role belongs to ''' Public Overridable Property SuiteId As Guid ''' '''Suite that the role belongs to ''' Public Overridable Property SuiteName As String ''' ''''A' (Active) or 'I' (Inactive) ''' Public Overridable Property RecordStatus As String ''' '''Object Connection Id, which is populated when the roles are returned based on those that are connected to an object. ''' Public Overridable Property ObjectConnectionId As Guid End Class 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 ''' '''Update the specified contact group ''' Public Partial Class UpdateContactGroup Implements IReturn(Of UpdateContactGroupResponse) ''' '''Id of Contact group to be updated ''' Public Overridable Property CustomerGroupId As Guid Public Overridable Property CustomerName As String Public Overridable Property NameTypeId As Guid Public Overridable Property Contacts As List(Of ContactGroupConnectionModel) Public Overridable Property RecordStatus As String End Class Public Partial Class UpdateContactGroupResponse Public Overridable Property Status As Boolean 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