(* Options: Date: 2026-04-04 06:54:22 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: GetPagedContactsInRole.* //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 SortOrder = | Ascending = 0 | Descending = 1 [] type PagedModel() = /// ///Page Number to retrieve /// [] member val PageNumber:Int32 = new Int32() with get,set /// ///Number of records to retrieve /// [] member val PageSize:Int32 = new Int32() with get,set /// ///Index of field to sort results by /// [] member val SortIndex:Int32 = new Int32() with get,set /// ///Sort Order - Ascending or Descending /// [] member val SortOrder:SortOrder = new SortOrder() with get,set [] 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 GetSlimContactsResponse() = member val Contacts:ResizeArray = null with get,set member val TotalContacts:Int32 = new Int32() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type GetPagedContactsInRole() = inherit PagedModel() interface IReturn /// ///Get contacts connected to the current licensee in the specified role /// [] member val RoleId:Guid = new Guid() with get,set /// ///Get contacts of the specified type /// [] member val ContactTypes:ResizeArray = null with get,set /// ///Contact statuses to search for, i.e. Real and/or Virtual /// [", Description="Contact statuses to search for, i.e. Real and/or Virtual", IsRequired=true, Name="Statuses")>] member val Statuses:ResizeArray = null with get,set /// ///Text to filter contacts on. searches for a contact with matches to the string. /// [] member val SearchText:String = null with get,set /// ///If you want just bare-bones contact info set this to false, if not specified it defaults to true. /// [] member val IncludeDetails:Nullable = new Nullable() with get,set