(* Options: Date: 2026-04-04 04:52:32 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: SearchContactsForRole.* //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 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 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 SearchContactsForRoleResponse() = member val Contacts:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Search contacts by Name or Email Address, by Role Groups, or by Roles /// [] [] [] type SearchContactsForRole() = interface IReturn /// ///Search type: by Name or Email Address, by Role Groups, or by Roles /// [] member val SearchBy:Guid = new Guid() with get,set /// ///Roles that contacts are connected to. /// [", Description="Roles that contacts are connected to.", Name="Roles")>] member val Roles:ResizeArray = null with get,set /// ///Role Groups that contacts are connected to. /// [", Description="Role Groups that contacts are connected to.", Name="RoleGroups")>] member val RoleGroups:ResizeArray = null with get,set /// ///For Search by Name or Email Address, filters contact results by this text value. /// [] member val SearchText:String = null with get,set /// ///Excludes contacts already connected to this role. /// [] member val ExcludeRole:Guid = new Guid() with get,set /// ///Filters contact results by contact type(s) provided, e.g. Real Persons, Organisations etc. Defaults to real person. /// [", Description="Filters contact results by contact type(s) provided, e.g. Real Persons, Organisations etc. Defaults to real person.", Name="ContactTypes")>] member val ContactTypes:ResizeArray = null with get,set /// ///Determines whether the contact details (Email, mobile number etc.) to be returned. /// [] member val IncludeDetails:Boolean = new Boolean() with get,set