(* Options: Date: 2026-04-04 01:04:04 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetLicenseeConnectedContacts.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type UserContactConnectionModel() = /// ///The Contact Role Id, that links the Contact to their role. /// [] member val ContactRoleId:Guid = new Guid() with get,set /// ///The role name. /// [] member val ContactRoleName:String = null with get,set /// ///The list item role Id. /// [] member val ContactListItemRoleId:Guid = new Guid() with get,set /// ///The URL of the contact role's image icon. /// [] member val ContactRolePrimaryImageURL:String = null with get,set /// ///The URL of the contact role's thumbnail image icon. /// [] member val ContactRolePrimaryImageThumbnailURL:String = null with get,set /// ///The Guid of the contact role's media file containing the image icon details. /// [] member val ContactRolePrimaryImageId:Guid = new Guid() with get,set /// ///The connected contacts Id. (licensee) /// [] member val ConnectionContactId:Guid = new Guid() with get,set /// ///The connected contacts Full Name. /// [] member val ConnectionContactName:String = null with get,set /// ///The connected contacts role. /// [] member val ConnectionContactRoleName:String = null with get,set /// ///The connected contacts role Id. /// [] member val ConnectionContactRoleId:Guid = new Guid() with get,set /// ///The connected contacts list item role Id. /// [] member val ConnectionContactListItemRoleId:Guid = new Guid() with get,set /// ///The Contacts Type. /// [] member val ContactTypeName:String = null with get,set /// ///The URL to the Connected Contacts Photo. /// [] member val ConnectionContactPhotoURL:String = null with get,set /// ///. /// [] member val IsContactLicenseeRole:Boolean = new Boolean() with get,set /// ///If the connection is as a licensee this is true. /// [] member val IsConnectionLicenseeRole:Boolean = new Boolean() with get,set /// ///The status of the connection with the contact. /// [] member val ConnectionStatusName:String = null with get,set /// ///The status Id of the connection with the contact. /// [] member val ConnectionStatusId:Guid = new Guid() with get,set /// ///The ContactRoleConnectionId of an active connection with the contact. /// [] member val ConnectionId:Guid = new Guid() with get,set /// ///The ContactRoleConnectionRequest of a pending connection with the contact. /// [] member val ConnectionRequestId:Guid = new Guid() with get,set [] type ContactEmailAddress() = /// ///The Contact Id of the contact. /// [] member val ContactId:Guid = new Guid() with get,set /// ///The Contact Full Name /// [] member val ContactName:String = null with get,set /// ///The Contact Email Address. /// [] member val EmailAddress:String = null with get,set /// ///The Contact Photo URL /// [] member val ContactPhotoURL:String = null with get,set [] type UserContacts() = /// ///A list of contact connections assigned to the user. /// [", Description="A list of contact connections assigned to the user.", Name="ContactConnections", ParameterType="query")>] member val ContactConnections:ResizeArray = null with get,set /// ///A list of connected contacts and their email addresses. /// [", Description="A list of connected contacts and their email addresses.", Name="EmailAddressBook", ParameterType="query")>] member val EmailAddressBook:ResizeArray = null with get,set /// ///Returns a list of licensee contacts connected to a user profile' contact. /// [] [] type GetLicenseeConnectedContacts() = interface IReturn /// ///The user profiles Contact Guid. Contacts connected to the user will be filted by this profiles contact ID. /// [] member val ContactId:Guid = new Guid() with get,set /// ///The suite id list. Gets contacts connected to the user filted by the suite IDs in this list.. /// [", Description="The suite id list. Gets contacts connected to the user filted by the suite IDs in this list..", Name="SuiteIds", ParameterType="query")>] member val SuiteIds:ResizeArray = null with get,set