(* Options: Date: 2026-04-04 01:04:02 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: GetStaffForContact.* //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 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 UserProfileModel() = inherit UserProfileSummaryModel() /// ///Contact Date of Birth (when person type) /// [] member val BirthDate:Nullable = new Nullable() with get,set /// ///Contact marital status (when person type) /// [] member val MaritalStatusName:String = null with get,set /// ///Contact gender (when person type) /// [] member val GenderName:String = null with get,set /// ///The Gender Guid of the contact. /// [] member val GenderId:Nullable = new Nullable() with get,set /// ///All contact details of the contact /// [", Description="All contact details of the contact", Name="ContactDetails", ParameterType="query")>] member val ContactDetails:ResizeArray = null with get,set /// ///Primary Street Address /// [] member val PrimaryStreetAddress:ContactDetailModel = null with get,set /// ///Primary Postal Address /// [] member val PrimaryPostalAddress:ContactDetailModel = null with get,set /// ///Primary Registered Address /// [] member val PrimaryRegisteredAddress:ContactDetailModel = null with get,set /// ///Primary Email Address /// [] member val PrimaryEmail:ContactDetailModel = null with get,set /// ///Primary Mobile Number /// [] member val PrimaryMobile:ContactDetailModel = null with get,set /// ///Primary Non-Mobile Number /// [] member val PrimaryPhone:ContactDetailModel = null with get,set /// ///Primary Fax Number /// [] member val PrimaryFax:ContactDetailModel = null with get,set /// ///Primary Web Address /// [] member val PrimaryWeb:ContactDetailModel = null with get,set /// ///Social Media Twitter /// [] member val SocialMediaTwitter:ContactDetailModel = null with get,set /// ///Social Media Facebook /// [] member val SocialMediaFacebook:ContactDetailModel = null with get,set /// ///Social Media Instagram /// [] member val SocialMediaInstagram:ContactDetailModel = null with get,set /// ///Have all connections to the contact been removed? /// [] member val IsRemovedContact:Boolean = new Boolean() with get,set /// ///True if this is the users default profile. /// [] member val IsDefault:Boolean = new Boolean() with get,set /// ///True if the users email on this profile can be edited. /// [] member val IsEmailEditable:Boolean = new Boolean() with get,set /// ///Primary image Content sent as a file stream contents (if not attached to the request) /// [] member val PrimaryImageContent:String = null with get,set /// ///Primary image Content type sent as a file stream contents (if not attached to the request) /// [] member val PrimaryImageContentType:String = null with get,set /// ///Primary image file name /// [] member val PrimaryImageFileName:String = null with get,set [] [] type GetContactsResponse() = 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 staff for the specified contact /// [] [] [] [] type GetStaffForContact() = inherit PagedModel() interface IReturn /// ///Organisation contact Id to get staff for /// [] member val ContactId:Guid = new Guid() with get,set /// ///Organisation Contact Type Id - Real or Virtual Organisation /// [] member val ContactTypeId:Guid = new Guid() with get,set /// ///Staff group id for the contact (if available) /// [] member val ContactStaffGroupId:Guid = new Guid() with get,set /// ///Return all connections or paged results? /// [] member val IsPagedMode:Boolean = new Boolean() with get,set