(* Options: Date: 2026-04-04 06:49:24 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: GetSlimContacts.* //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 /// ///Get contacts connected to the current contact or licensee (if managing licensee contacts) by criteria, returning minimal number of columns /// [] [] [] type GetSlimContacts() = inherit PagedModel() interface IReturn /// ///Specific search text to search for, e.g. Contact Name, Employment Details etc. /// [] member val SearchText:String = null with get,set /// ///Contact Types to search for, i.e. People and/or Organisations /// [", Description="Contact Types to search for, i.e. People and/or Organisations", IsRequired=true, Name="ContactTypes")>] 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 /// ///Include contacts previously connected to the contact but now removed. /// [] member val IncludeRemoved:Boolean = new Boolean() with get,set /// ///Return all contacts matching criteria, or paged results? /// [] member val IsPagedMode:Boolean = new Boolean() with get,set