' Options: 'Date: 2026-04-04 02:57:52 '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: GetConnectionsToContact.* '''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 ContactConnectionModel ''' '''Connection Id (if applicable) ''' Public Overridable Property ConnectionId As Guid? ''' '''Connection Request Id (if applicable) ''' Public Overridable Property ConnectionRequestId As Guid? ''' '''Details of the contact ''' Public Overridable Property Contact As ContactSummaryModel ''' '''Contact's role Id in the connection ''' Public Overridable Property ContactRoleId As Guid ''' '''Contact's role name in the connection ''' Public Overridable Property ContactRoleName As String ''' '''Requestor Contact Id ''' Public Overridable Property RequestorContactId As Guid ''' '''Requestor Contact Name ''' Public Overridable Property RequestorContactName As String ''' '''Requestor contact's role Id in the connection ''' Public Overridable Property RequestorRoleId As Guid ''' '''Requestor's role name in the connection ''' Public Overridable Property RequestorRoleName As String ''' '''Primary role in the connection to display ''' Public Overridable Property PrimaryRoleName As String ''' '''Connection Status Id ''' Public Overridable Property ConnectionStatusId As Guid ''' '''Connection Status Name ''' Public Overridable Property ConnectionStatusName As String ''' '''Is this a pending connection request? ''' Public Overridable Property IsConnectionRequest As Boolean ''' '''Is this an incoming connection request? ''' Public Overridable Property IsIncoming As Boolean Public Overridable Property FromDate As Date? ''' '''Details of the contact suggesting this connection ''' Public Overridable Property SuggesterContact As ContactSummaryModel ''' '''Can this connection be cancelled? ''' Public Overridable Property AllowCancel As Boolean ''' '''Can this connection be removed? ''' Public Overridable Property AllowRemove As Boolean End Class 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 ''' '''Get connections to the specified contact for the requestor contact ''' Public Partial Class GetConnectionsToContact Inherits PagedModel Implements IReturn(Of GetConnectionsToContactResponse) ''' '''Contact Id to get connections for ''' Public Overridable Property ContactId As Guid ''' '''Type of the contact to get connections for (i.e. Real/ virtual Person/ Organisation) ''' Public Overridable Property ContactTypeId As Guid ''' '''Contact Id requesting the details - Current user or licensee ''' Public Overridable Property RequestorContactId As Guid ''' '''Return all connections or paged results? ''' Public Overridable Property IsPagedMode As Boolean ''' '''Option to return removed connections ''' Public Overridable Property IncludeRemoved As Boolean End Class Public Partial Class GetConnectionsToContactResponse Public Overridable Property Connections As List(Of ContactConnectionModel) Public Overridable Property TotalConnections 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