(* Options: Date: 2026-04-04 06:43: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: GetDefaultUserProfile.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPI.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 ContactDetailModel() = /// ///Id of the Contact Method /// [] member val ContactMethodId:Guid = new Guid() with get,set /// ///Contact Method Name /// [] member val ContactMethodName:String = null with get,set /// ///If the contact method is an address, this will contain the address details. /// [] member val ContactAddress:ContactAddressModel = null with get,set /// ///If the contact method is a phone, this will contain the phone details /// [] member val ContactPhone:PhoneModel = null with get,set /// ///Id of the country /// [] member val CountryId:Nullable = new Nullable() with get,set /// ///A summary string representing the contact details /// [] member val ContactDetails:String = null with get,set /// ///Notes about the contact details /// [] member val Notes:String = null with get,set /// ///Area Code if contact details are a phone number /// [] member val ContactDetailsCode:String = null with get,set /// ///Order number of the contact method /// [] member val OrderContactMethod:Int32 = new Int32() with get,set /// ///True if this is the primary contact method /// [] member val IsPrimaryContactMethod:Boolean = new Boolean() with get,set /// ///True if this contact method is an address /// [] member val IsAddress:Boolean = new Boolean() with get,set [] type ContactDetailModel() = /// ///Contact Method Id /// [] member val ContactMethodId:Guid = new Guid() with get,set /// ///Contact Method Name /// [] member val ContactMethodName:String = null with get,set /// ///Contact Address Details /// [] member val ContactAddress:ContactAddressModel = null with get,set /// ///Contact Phone Details /// [] member val ContactPhone:PhoneModel = null with get,set /// ///Country id /// [] member val CountryId:Nullable = new Nullable() with get,set /// ///Contact Details /// [] member val ContactDetails:String = null with get,set /// ///Notes /// [] member val Notes:String = null with get,set /// ///Contact Details Code /// [] member val ContactDetailsCode:String = null with get,set /// ///Order of Contact Method Id /// [] member val OrderContactMethod:Int32 = new Int32() with get,set /// ///Contact Method Id /// [] member val IsPrimaryContactMethod:Boolean = new Boolean() with get,set /// ///Is contact details an address /// [] member val IsAddress:Boolean = new Boolean() with get,set /// ///Contact Contact Detail Id /// [] member val ContactContactDetailId:Guid = new Guid() with get,set /// ///Contact Id /// [] member val ContactId:Guid = new Guid() with get,set /// ///Contact Details Id /// [] member val ContactDetailId:Guid = new Guid() with get,set /// ///Is contact details a primary location /// [] member val IsPrimaryLocation:Boolean = new Boolean() with get,set /// ///Is contact details a registered location /// [] member val IsRegisteredLocation:Boolean = new Boolean() with get,set /// ///Is contact details a postal address /// [] member val IsPostal:Boolean = new Boolean() with get,set /// ///Is contact details a phone number /// [] member val IsPhone:Boolean = new Boolean() with get,set /// ///Email Signature Id /// [] member val EmailSignatureId:Guid = new Guid() with get,set /// ///Email Signature HTML /// [] member val EmailSignatureHTML:String = null with get,set /// ///Email Signature Text /// [] member val EmailSignatureText:String = null with get,set /// ///API Key from Framework /// [] member val ApiFrameworkAlternateKey:String = 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 GetDefaultUserProfile() = interface IReturn /// ///Unique Email address of the user. If the value passed is empty, UserId must be entered. /// [] member val UserName:String = null with get,set