(* Options: Date: 2026-04-04 04:53:00 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: GetObjectContactConnections.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPIModel.Models open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ContactSummaryModel() = /// ///Contact linked to the profile /// [] member val ContactId:Guid = new Guid() with get,set /// ///Full name of the contact linked to the profile /// [] member val ContactFullName:String = null with get,set /// ///Email Address of the contact linked to the profile /// [] member val EmailAddress:String = null with get,set /// ///Mobile Number of the contact linked to the profile /// [] member val MobileNumber:String = null with get,set /// ///Primary Phone Number of the contact linked to the profile /// [] member val PhoneNumber:String = null with get,set /// ///Type of contact (person, organisation etc.) linked to the profile /// [] member val ContactTypeId:Guid = new Guid() with get,set /// ///Profile photo of contact linked to the profile /// [] member val ProfilePhotoUrl:String = null with get,set /// ///Thumbnail photo of contact linked to the profile /// [] member val ProfilePhotoThumbnailUrl:String = null with get,set /// ///Profile description /// [] member val Description:String = null with get,set /// ///Employment Industry /// [] member val EmploymentIndustry:String = null with get,set /// ///Employment Role /// [] member val EmploymentRole:String = null with get,set /// ///Areas of Work /// [] member val EmploymentGeographicArea:String = null with get,set /// ///Timezone Name /// [] member val TimezoneName:String = null with get,set /// ///The primary address of the contact /// [] member val PrimaryAddress:String = null with get,set /// ///Have all connections to the contact been removed? /// [] member val IsRemovedContact:Boolean = new Boolean() with get,set [] type ObjectContactConnectionModel() = member val ObjectContactConnectionId:Guid = new Guid() with get,set member val ContactRoleConnectionId:Guid = new Guid() with get,set member val ObjectId:Guid = new Guid() with get,set member val Contact:ContactSummaryModel = null with get,set member val RoleId:Guid = new Guid() with get,set member val RoleName:String = null with get,set member val Created:DateTime = new DateTime() with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GetObjectContactConnectionsResponse() = member val ContactConnections:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get contact connections for the specified object. /// [] [] [] [] type GetObjectContactConnections() = interface IReturn /// ///Object Id to get contact connections for /// [] member val ObjectId:Guid = new Guid() with get,set