(* Options: Date: 2026-04-04 04:52:38 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: GetContactsNotManagingOrgProfile.* //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 UserProfileSummaryModel() = /// ///User Profile Id /// [] member val UserProfileId:Guid = new Guid() with get,set /// ///User linked to the profile /// [] member val UserId:Guid = new Guid() with get,set /// ///Contact linked to the profile /// [] member val ContactId:Guid = new Guid() with get,set /// ///User linked to the profile /// [] member val UserName:String = null with get,set /// ///User Profile Name /// [] member val ProfileName:String = null 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 /// ///Email signature of the contact linked to the profile /// [] member val EmailSignature:String = null with get,set /// ///Mobile number of the contact linked to the profile /// [] member val MobileNumber:String = null with get,set /// ///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 /// ///Type of contact (person, organisation etc.) linked to the profile /// [] member val ContactTypeName:String = null with get,set /// ///First name of the contact linked to the profile /// [] member val FirstName:String = null with get,set /// ///Surname of the contact linked to the profile /// [] member val Surname:String = null with get,set /// ///Title of contact linked to the profile /// [] member val Title:String = null with get,set /// ///Legal name of contact linked to the profile /// [] member val LegalName:String = null with get,set /// ///Trading name of contact linked to the profile /// [] member val TradingName:String = null with get,set /// ///Australian Business Number /// [] member val Abn:String = null with get,set /// ///Australian Company Number /// [] member val Acn:String = null with get,set /// ///Australian Registered Body Number /// [] member val Arbn:String = null with get,set /// ///Indicates if the Contact is registered for GST. /// [] member val GstRegistered:Boolean = new Boolean() with get,set /// ///True if english is a secondary language for the contact. /// [] member val ESL:Boolean = new Boolean() with get,set /// ///Language that is the primary language for the contact. /// [] member val Language:String = null with get,set /// ///True if an interpreter is required. /// [] member val InterpreterRequired:Boolean = new Boolean() with get,set /// ///Licensee specific notes about the contact. /// [] member val LicenseeNotes:String = null 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 photo id of contact linked to the profile /// [] member val ProfileImageId:Guid = new Guid() 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 /// ///The contacts timezone. /// [] member val Timezone:Guid = new Guid() 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 /// ///Is this an active contact? Or an inactive contact (deleted account)? /// [] member val IsActiveContact:Boolean = new Boolean() 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 GetContactsNotManagingOrgProfileResponse() = /// ///A list of contacts eligible, but not yet managing the passed in Organisation Profile. /// [", Description="A list of contacts eligible, but not yet managing the passed in Organisation Profile.", Name="ContactsNotManagingOrgProfile")>] member val ContactsNotManagingOrgProfile:ResizeArray = null with get,set member val TotalContactsNotManagingOrgProfile:Int32 = new Int32() with get,set /// ///Service Stack Response Status. /// [] member val ResponseStatus:ResponseStatus = null with get,set /// ///Gets a list of contacts that are not currently managing the userProfileId supplied. /// [] [] [] type GetContactsNotManagingOrgProfile() = interface IReturn /// ///Id of the Organisation Profile record being managed. /// [] member val UserProfileId:Guid = new Guid() with get,set