| All Verbs | /api/profiles |
|---|
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
[<AllowNullLiteral>]
type UserProfileSummaryModel() =
///<summary>
///User Profile Id
///</summary>
[<ApiMember(DataType="Guid", Description="User Profile Id", Name="UserProfileId")>]
member val UserProfileId:Guid = new Guid() with get,set
///<summary>
///User linked to the profile
///</summary>
[<ApiMember(DataType="Guid", Description="User linked to the profile", Name="UserId")>]
member val UserId:Guid = new Guid() with get,set
///<summary>
///Contact linked to the profile
///</summary>
[<ApiMember(DataType="Guid", Description="Contact linked to the profile", Name="ContactId")>]
member val ContactId:Guid = new Guid() with get,set
///<summary>
///User linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="User linked to the profile", Name="UserName")>]
member val UserName:String = null with get,set
///<summary>
///User Profile Name
///</summary>
[<ApiMember(DataType="string", Description="User Profile Name", Name="ProfileName")>]
member val ProfileName:String = null with get,set
///<summary>
///Full name of the contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Full name of the contact linked to the profile", Name="ContactFullName")>]
member val ContactFullName:String = null with get,set
///<summary>
///Email Address of the contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Email Address of the contact linked to the profile", Name="EmailAddress")>]
member val EmailAddress:String = null with get,set
///<summary>
///Email signature of the contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Email signature of the contact linked to the profile", Name="EmailSignature")>]
member val EmailSignature:String = null with get,set
///<summary>
///Mobile number of the contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Mobile number of the contact linked to the profile", Name="MobileNumber")>]
member val MobileNumber:String = null with get,set
///<summary>
///Phone number of the contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Phone number of the contact linked to the profile", Name="PhoneNumber")>]
member val PhoneNumber:String = null with get,set
///<summary>
///Type of contact (person, organisation etc.) linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Type of contact (person, organisation etc.) linked to the profile", Name="ContactTypeId")>]
member val ContactTypeId:Guid = new Guid() with get,set
///<summary>
///Type of contact (person, organisation etc.) linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Type of contact (person, organisation etc.) linked to the profile", Name="ContactTypeName")>]
member val ContactTypeName:String = null with get,set
///<summary>
///First name of the contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="First name of the contact linked to the profile", Name="FirstName")>]
member val FirstName:String = null with get,set
///<summary>
///Surname of the contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Surname of the contact linked to the profile", Name="Surname")>]
member val Surname:String = null with get,set
///<summary>
///Title of contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Title of contact linked to the profile", Name="Title")>]
member val Title:String = null with get,set
///<summary>
///Legal name of contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Legal name of contact linked to the profile", Name="LegalName")>]
member val LegalName:String = null with get,set
///<summary>
///Trading name of contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Trading name of contact linked to the profile", Name="TradingName")>]
member val TradingName:String = null with get,set
///<summary>
///Australian Business Number
///</summary>
[<ApiMember(DataType="string", Description="Australian Business Number", Name="Abn", ParameterType="query")>]
member val Abn:String = null with get,set
///<summary>
///Australian Company Number
///</summary>
[<ApiMember(DataType="string", Description="Australian Company Number", Name="Acn", ParameterType="query")>]
member val Acn:String = null with get,set
///<summary>
///Australian Registered Body Number
///</summary>
[<ApiMember(DataType="string", Description="Australian Registered Body Number", Name="Arbn", ParameterType="query")>]
member val Arbn:String = null with get,set
///<summary>
///Indicates if the Contact is registered for GST.
///</summary>
[<ApiMember(DataType="bool", Description="Indicates if the Contact is registered for GST.", Name="GstRegistered", ParameterType="query")>]
member val GstRegistered:Boolean = new Boolean() with get,set
///<summary>
///True if english is a secondary language for the contact.
///</summary>
[<ApiMember(DataType="bool", Description="True if english is a secondary language for the contact.", Name="ESL", ParameterType="query")>]
member val ESL:Boolean = new Boolean() with get,set
///<summary>
///Language that is the primary language for the contact.
///</summary>
[<ApiMember(DataType="string", Description="Language that is the primary language for the contact.", Name="Language", ParameterType="query")>]
member val Language:String = null with get,set
///<summary>
///True if an interpreter is required.
///</summary>
[<ApiMember(DataType="bool", Description="True if an interpreter is required.", Name="InterpreterRequired", ParameterType="query")>]
member val InterpreterRequired:Boolean = new Boolean() with get,set
///<summary>
///Licensee specific notes about the contact.
///</summary>
[<ApiMember(DataType="string", Description="Licensee specific notes about the contact.", Name="LicenseeNotes", ParameterType="query")>]
member val LicenseeNotes:String = null with get,set
///<summary>
///Profile photo of contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Profile photo of contact linked to the profile", Name="ProfilePhotoUrl")>]
member val ProfilePhotoUrl:String = null with get,set
///<summary>
///Thumbnail photo of contact linked to the profile
///</summary>
[<ApiMember(DataType="string", Description="Thumbnail photo of contact linked to the profile", Name="ProfilePhotoThumbnailUrl")>]
member val ProfilePhotoThumbnailUrl:String = null with get,set
///<summary>
///Profile photo id of contact linked to the profile
///</summary>
[<ApiMember(DataType="Guid", Description="Profile photo id of contact linked to the profile", Name="ProfileImageId")>]
member val ProfileImageId:Guid = new Guid() with get,set
///<summary>
///Profile description
///</summary>
[<ApiMember(DataType="string", Description="Profile description", Name="Description")>]
member val Description:String = null with get,set
///<summary>
///Employment Industry
///</summary>
[<ApiMember(DataType="string", Description="Employment Industry", Name="EmploymentIndustry")>]
member val EmploymentIndustry:String = null with get,set
///<summary>
///Employment Role
///</summary>
[<ApiMember(DataType="string", Description="Employment Role", Name="EmploymentRole")>]
member val EmploymentRole:String = null with get,set
///<summary>
///Areas of Work
///</summary>
[<ApiMember(DataType="string", Description="Areas of Work", Name="EmploymentGeographicArea")>]
member val EmploymentGeographicArea:String = null with get,set
///<summary>
///The contacts timezone.
///</summary>
[<ApiMember(DataType="Guid", Description="The contacts timezone.", Name="Timezone", ParameterType="query")>]
member val Timezone:Guid = new Guid() with get,set
///<summary>
///Timezone Name
///</summary>
[<ApiMember(DataType="string", Description="Timezone Name", Name="TimezoneName", ParameterType="query")>]
member val TimezoneName:String = null with get,set
///<summary>
///The primary address of the contact
///</summary>
[<ApiMember(DataType="string", Description="The primary address of the contact", Name="PrimaryAddress", ParameterType="query")>]
member val PrimaryAddress:String = null with get,set
///<summary>
///Is this an active contact? Or an inactive contact (deleted account)?
///</summary>
[<ApiMember(DataType="bool", Description="Is this an active contact? Or an inactive contact (deleted account)?", Name="IsActiveContact")>]
member val IsActiveContact:Boolean = new Boolean() with get,set
[<AllowNullLiteral>]
type LocationCoordinatesModel() =
///<summary>
///The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface.
///</summary>
[<ApiMember(Description="The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface.", ParameterType="query")>]
member val Latitude:Double = new Double() with get,set
///<summary>
///The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface.
///</summary>
[<ApiMember(Description="The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface.", ParameterType="query")>]
member val Longitude:Double = new Double() with get,set
///<summary>
///The altitude of an address - the altitude above sea level."
///</summary>
[<ApiMember(Description="The altitude of an address - the altitude above sea level.\"", ParameterType="query")>]
member val Altitude:Nullable<Double> = new Nullable<Double>() with get,set
///<summary>
///Accuracy of the latitude and longitude.
///</summary>
[<ApiMember(Description="Accuracy of the latitude and longitude.", ParameterType="query")>]
member val Accuracy:Nullable<Double> = new Nullable<Double>() with get,set
///<summary>
///Accurancy of the Altitude.
///</summary>
[<ApiMember(Description="Accurancy of the Altitude.", ParameterType="query")>]
member val AltitudeAccuracy:Nullable<Double> = new Nullable<Double>() with get,set
///<summary>
///Direction you are heading.
///</summary>
[<ApiMember(Description="Direction you are heading.", ParameterType="query")>]
member val Heading:Nullable<Double> = new Nullable<Double>() with get,set
///<summary>
///Speed you are going.
///</summary>
[<ApiMember(Description="Speed you are going.", ParameterType="query")>]
member val Speed:Nullable<Double> = new Nullable<Double>() with get,set
///<summary>
///Speed your altitude is ascending/descending at.
///</summary>
[<ApiMember(Description="Speed your altitude is ascending/descending at.", ParameterType="query")>]
member val VerticalSpeed:Nullable<Double> = new Nullable<Double>() with get,set
[<AllowNullLiteral>]
type AddressModel() =
///<summary>
///The distance between this project and another specified set of gps coordinates.
///</summary>
[<ApiMember(DataType="double", Description="The distance between this project and another specified set of gps coordinates.", Name="DistanceAway", ParameterType="body")>]
member val DistanceAway:Double = new Double() with get,set
///<summary>
///The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface.
///</summary>
[<ApiMember(DataType="Double?", Description="The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface.", Name="Latitude", ParameterType="body")>]
member val Latitude:Double = new Double() with get,set
///<summary>
///The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface.
///</summary>
[<ApiMember(DataType="Double?", Description="The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface.", Name="Longitude", ParameterType="body")>]
member val Longitude:Double = new Double() with get,set
///<summary>
///Address Format Id Guid - this will be determined by the service.
///</summary>
[<ApiMember(DataType="Guid", Description="Address Format Id Guid - this will be determined by the service.", Name="AddressFormatId", ParameterType="body")>]
member val AddressFormatId:Guid = new Guid() with get,set
///<summary>
///Suburb Id Guid - this will attempt to be determined by the SuburbName, StateShortName and Postcode entered.
///</summary>
[<ApiMember(DataType="Guid", Description="Suburb Id Guid - this will attempt to be determined by the SuburbName, StateShortName and Postcode entered.", Name="SuburbId", ParameterType="body")>]
member val SuburbId:Guid = new Guid() with get,set
///<summary>
///The suburb name.
///</summary>
[<ApiMember(DataType="string", Description="The suburb name.", Name="SuburbName", ParameterType="body")>]
member val SuburbName:String = null with get,set
///<summary>
///The shortened State Name e.g Vic for Victoria.
///</summary>
[<ApiMember(DataType="string", Description="The shortened State Name e.g Vic for Victoria.", Name="StateShortName", ParameterType="body")>]
member val StateShortName:String = null with get,set
///<summary>
///The suburb postcode.
///</summary>
[<ApiMember(DataType="string", Description="The suburb postcode.", Name="PostCode", ParameterType="body")>]
member val PostCode:String = null with get,set
///<summary>
///Country Id Guid - this will be determined by the CountrName or ISOCountryCode entered.
///</summary>
[<ApiMember(DataType="Guid", Description="Country Id Guid - this will be determined by the CountrName or ISOCountryCode entered.", Name="CountryId", ParameterType="body")>]
member val CountryId:Guid = new Guid() with get,set
///<summary>
///the name of the country the address is within.
///</summary>
[<ApiMember(DataType="string", Description="the name of the country the address is within.", Name="CountryName", ParameterType="body")>]
member val CountryName:String = null with get,set
///<summary>
///ISO Country Code.
///</summary>
[<ApiMember(Description="ISO Country Code.", ParameterType="query")>]
member val ISOCountryCode:String = null with get,set
///<summary>
///The address Lot number.
///</summary>
[<ApiMember(DataType="string", Description="The address Lot number.", Name="LotNumber", ParameterType="body")>]
member val LotNumber:String = null with get,set
///<summary>
///The address Sub Unit number.
///</summary>
[<ApiMember(DataType="string", Description="The address Sub Unit number.", Name="SubUnit", ParameterType="body")>]
member val SubUnit:String = null with get,set
///<summary>
///The address building number.
///</summary>
[<ApiMember(DataType="string", Description="The address building number.", Name="BuildingNumber", ParameterType="body")>]
member val BuildingNumber:String = null with get,set
///<summary>
///The address street number.
///</summary>
[<ApiMember(DataType="string", Description="The address street number.", Name="StreetNumber", ParameterType="body")>]
member val StreetNumber:String = null with get,set
///<summary>
///The address street name including street type.
///</summary>
[<ApiMember(DataType="string", Description="The address street name including street type.", Name="StreetName", ParameterType="body")>]
member val StreetName:String = null with get,set
///<summary>
///A formatted address Line 1.
///</summary>
[<ApiMember(DataType="string", Description="A formatted address Line 1.", Name="AddressLineOne", ParameterType="body")>]
member val AddressLineOne:String = null with get,set
///<summary>
///A formatted address Line 2.
///</summary>
[<ApiMember(DataType="string", Description="A formatted address Line 2.", Name="AddressLineTwo", ParameterType="body")>]
member val AddressLineTwo:String = null with get,set
///<summary>
///The full address string.
///</summary>
[<ApiMember(DataType="string", Description="The full address string.", Name="AddressFull", ParameterType="body")>]
member val AddressFull:String = null with get,set
///<summary>
///True if the address is a physical location.
///</summary>
[<ApiMember(DataType="bool?", Description="True if the address is a physical location.", Name="IsPhysical", ParameterType="body")>]
member val IsPhysical:Nullable<Boolean> = new Nullable<Boolean>() with get,set
///<summary>
///Notes about the address.
///</summary>
[<ApiMember(DataType="string", Description="Notes about the address.", Name="Notes")>]
member val Notes:String = null with get,set
///<summary>
///If true, the address is eligible for having its coordinates calculated/updated.
///</summary>
[<ApiMember(DataType="bool?", Description="If true, the address is eligible for having its coordinates calculated/updated.", Name="AutoMapCoordinates", ParameterType="body")>]
member val AutoMapCoordinates:Nullable<Boolean> = new Nullable<Boolean>() with get,set
///<summary>
///Location Coordinates for the address.
///</summary>
[<ApiMember(DataType="LocationCoordinates", Description="Location Coordinates for the address.", Name="LocationCoordinates", ParameterType="body")>]
member val LocationCoordinates:LocationCoordinatesModel = null with get,set
[<AllowNullLiteral>]
type GeoEstateStageModel() =
member val GeoEstateStageId:Guid = new Guid() with get,set
member val GeoEstateId:Guid = new Guid() with get,set
member val Name:String = null with get,set
member val Notes:String = null with get,set
member val RecordStatus:String = null with get,set
[<AllowNullLiteral>]
type GeoEstateModel() =
member val GeoEstateId:Guid = new Guid() with get,set
member val Name:String = null with get,set
member val Notes:String = null with get,set
member val DeveloperContactId:Guid = new Guid() with get,set
member val DeveloperName:String = null with get,set
member val DeveloperProfilePhotoUrl:String = null with get,set
member val DeveloperProfilePhotoThumbnail:String = null with get,set
member val RecordStatus:String = null with get,set
member val Stages:ResizeArray<GeoEstateStageModel> = null with get,set
member val CurrentEstateStageId:Guid = new Guid() with get,set
member val CurrentEstateStageName:String = null with get,set
[<AllowNullLiteral>]
type GeoLocationModel() =
///<summary>
///The location id
///</summary>
[<ApiMember(DataType="Guid", Description="The location id", Name="GeoLocationId", ParameterType="query")>]
member val GeoLocationId:Guid = new Guid() with get,set
///<summary>
///The state id
///</summary>
[<ApiMember(DataType="Guid", Description="The state id", Name="StateId", ParameterType="query")>]
member val StateId:Nullable<Guid> = new Nullable<Guid>() with get,set
///<summary>
///The state name
///</summary>
[<ApiMember(DataType="string", Description="The state name", Name="StateName", ParameterType="query")>]
member val StateName:String = null with get,set
///<summary>
///The suburb id
///</summary>
[<ApiMember(DataType="Guid", Description="The suburb id", Name="SuburbId", ParameterType="query")>]
member val SuburbId:Nullable<Guid> = new Nullable<Guid>() with get,set
///<summary>
///The suburb name
///</summary>
[<ApiMember(DataType="string", Description="The suburb name", Name="SuburbName", ParameterType="query")>]
member val SuburbName:String = null with get,set
///<summary>
///The country id
///</summary>
[<ApiMember(DataType="Guid", Description="The country id", Name="CountryId", ParameterType="query")>]
member val CountryId:Nullable<Guid> = new Nullable<Guid>() with get,set
///<summary>
///The country name
///</summary>
[<ApiMember(DataType="string", Description="The country name", Name="CountryName", ParameterType="query")>]
member val CountryName:String = null with get,set
///<summary>
///The lot number
///</summary>
[<ApiMember(DataType="string", Description="The lot number", Name="LotNumber", ParameterType="query")>]
member val LotNumber:String = null with get,set
///<summary>
///The unit number
///</summary>
[<ApiMember(DataType="string", Description="The unit number", Name="SubUnit", ParameterType="query")>]
member val SubUnit:String = null with get,set
///<summary>
///The building number
///</summary>
[<ApiMember(DataType="string", Description="The building number", Name="BuildingNumber", ParameterType="query")>]
member val BuildingNumber:String = null with get,set
///<summary>
///PO Box Number
///</summary>
[<ApiMember(DataType="string", Description="PO Box Number", Name="PostalDeliveryNumber", ParameterType="query")>]
member val PostalDeliveryNumber:String = null with get,set
///<summary>
///The Street Number
///</summary>
[<ApiMember(DataType="string", Description="The Street Number", Name="StreetNumber", ParameterType="query")>]
member val StreetNumber:String = null with get,set
///<summary>
///The Street name
///</summary>
[<ApiMember(DataType="string", Description="The Street name", Name="StreetName", ParameterType="query")>]
member val StreetName:String = null with get,set
///<summary>
///Address Line ONe
///</summary>
[<ApiMember(DataType="string", Description="Address Line ONe", Name="AddressLineOne", ParameterType="query")>]
member val AddressLineOne:String = null with get,set
///<summary>
///Address Line Two
///</summary>
[<ApiMember(DataType="string", Description="Address Line Two", Name="AddressLineTwo", ParameterType="query")>]
member val AddressLineTwo:String = null with get,set
///<summary>
///Post code
///</summary>
[<ApiMember(DataType="string", Description="Post code", Name="PostCode", ParameterType="query")>]
member val PostCode:String = null with get,set
///<summary>
///Is location physical
///</summary>
[<ApiMember(DataType="bool", Description="Is location physical", Name="IsPhysical", ParameterType="query")>]
member val IsPhysical:Boolean = new Boolean() with get,set
///<summary>
///Notes about the location
///</summary>
[<ApiMember(DataType="string", Description="Notes about the location", Name="Notes", ParameterType="query")>]
member val Notes:String = null with get,set
///<summary>
///The address in full
///</summary>
[<ApiMember(DataType="string", Description="The address in full", Name="AddressFull", ParameterType="query")>]
member val AddressFull:String = null with get,set
///<summary>
///Address format id.
///</summary>
[<ApiMember(DataType="Guid", Description="Address format id.", Name="AddressFormatId", ParameterType="query")>]
member val AddressFormatId:Guid = new Guid() with get,set
///<summary>
///Latitude
///</summary>
[<ApiMember(DataType="double", Description="Latitude", Name="Latitude", ParameterType="query")>]
member val Latitude:Double = new Double() with get,set
///<summary>
///Longitude
///</summary>
[<ApiMember(DataType="double", Description="Longitude", Name="Longitude", ParameterType="query")>]
member val Longitude:Double = new Double() with get,set
///<summary>
///Timezone Id
///</summary>
[<ApiMember(DataType="Guid?", Description="Timezone Id", Name="Timezone", ParameterType="query")>]
member val Timezone:Nullable<Guid> = new Nullable<Guid>() with get,set
member val Estate:GeoEstateModel = null with get,set
member val GeoEstateId:Guid = new Guid() with get,set
member val GeoEstateStageId:Guid = new Guid() with get,set
member val GeoEstateStageName:String = null with get,set
member val IgnoreValidation:Boolean = new Boolean() with get,set
[<AllowNullLiteral>]
type ContactAddressModel() =
///<summary>
///Location Details.
///</summary>
[<ApiMember(DataType="GeoLocationModel", Description="Location Details.", Name="Location", ParameterType="query")>]
member val Location:GeoLocationModel = null with get,set
///<summary>
///Is address postal.
///</summary>
[<ApiMember(DataType="bool", Description="Is address postal.", Name="IsPostal", ParameterType="query")>]
member val IsPostal:Boolean = new Boolean() with get,set
///<summary>
///Is address primary.
///</summary>
[<ApiMember(DataType="bool", Description="Is address primary.", Name="IsPrimaryLocation", ParameterType="query")>]
member val IsPrimaryLocation:Boolean = new Boolean() with get,set
///<summary>
///Is address registered.
///</summary>
[<ApiMember(DataType="bool", Description="Is address registered.", Name="IsRegisteredLocation", ParameterType="query")>]
member val IsRegisteredLocation:Boolean = new Boolean() with get,set
///<summary>
///Contact Address Id.
///</summary>
[<ApiMember(DataType="Guid", Description="Contact Address Id.", Name="ContactAddressId", ParameterType="query")>]
member val ContactAddressId:Guid = new Guid() with get,set
///<summary>
///Contact Address Suburb Name.
///</summary>
[<ApiMember(DataType="string", Description="Contact Address Suburb Name.", Name="SuburbName", ParameterType="query")>]
member val SuburbName:String = null with get,set
///<summary>
///Contact Address Street Name.
///</summary>
[<ApiMember(DataType="string", Description="Contact Address Street Name.", Name="StateName", ParameterType="query")>]
member val StateName:String = null with get,set
///<summary>
///Contact Country Name.
///</summary>
[<ApiMember(DataType="string", Description="Contact Country Name.", Name="CountryName", ParameterType="query")>]
member val CountryName:String = null with get,set
[<AllowNullLiteral>]
type PhoneModel() =
///<summary>
///Phone Country Code.
///</summary>
[<ApiMember(DataType="string", Description="Phone Country Code.", Name="CountryCode", ParameterType="query")>]
member val CountryCode:String = null with get,set
///<summary>
///Phone Area Code.
///</summary>
[<ApiMember(DataType="string", Description="Phone Area Code.", Name="AreaCode", ParameterType="query")>]
member val AreaCode:String = null with get,set
///<summary>
///Phone Local Number.
///</summary>
[<ApiMember(DataType="string", Description="Phone Local Number.", Name="LocalNumber", ParameterType="query")>]
member val LocalNumber:String = null with get,set
[<AllowNullLiteral>]
type ContactDetailModel() =
///<summary>
///Contact Method Id
///</summary>
[<ApiMember(DataType="Guid", Description="Contact Method Id", Name="ContactMethodId", ParameterType="query")>]
member val ContactMethodId:Guid = new Guid() with get,set
///<summary>
///Contact Method Name
///</summary>
[<ApiMember(DataType="string", Description="Contact Method Name", Name="ContactMethodName", ParameterType="query")>]
member val ContactMethodName:String = null with get,set
///<summary>
///Contact Address Details
///</summary>
[<ApiMember(DataType="ContactAddressModel", Description="Contact Address Details", Name="ContactAddress", ParameterType="query")>]
member val ContactAddress:ContactAddressModel = null with get,set
///<summary>
///Contact Phone Details
///</summary>
[<ApiMember(DataType="PhoneModel", Description="Contact Phone Details", Name="ContactPhone", ParameterType="query")>]
member val ContactPhone:PhoneModel = null with get,set
///<summary>
///Country id
///</summary>
[<ApiMember(DataType="Guid", Description="Country id", Name="CountryId", ParameterType="query")>]
member val CountryId:Nullable<Guid> = new Nullable<Guid>() with get,set
///<summary>
///Contact Details
///</summary>
[<ApiMember(DataType="string", Description="Contact Details", Name="ContactDetails", ParameterType="query")>]
member val ContactDetails:String = null with get,set
///<summary>
///Notes
///</summary>
[<ApiMember(DataType="string", Description="Notes", Name="Notes", ParameterType="query")>]
member val Notes:String = null with get,set
///<summary>
///Contact Details Code
///</summary>
[<ApiMember(DataType="string", Description="Contact Details Code", Name="ContactDetailsCode", ParameterType="query")>]
member val ContactDetailsCode:String = null with get,set
///<summary>
///Order of Contact Method Id
///</summary>
[<ApiMember(DataType="int", Description="Order of Contact Method Id", Name="OrderContactMethod", ParameterType="query")>]
member val OrderContactMethod:Int32 = new Int32() with get,set
///<summary>
///Contact Method Id
///</summary>
[<ApiMember(DataType="bool", Description="Contact Method Id", Name="IsPrimaryContactMethod", ParameterType="query")>]
member val IsPrimaryContactMethod:Boolean = new Boolean() with get,set
///<summary>
///Is contact details an address
///</summary>
[<ApiMember(DataType="bool", Description="Is contact details an address", Name="IsAddress", ParameterType="query")>]
member val IsAddress:Boolean = new Boolean() with get,set
///<summary>
///Contact Contact Detail Id
///</summary>
[<ApiMember(DataType="Guid", Description="Contact Contact Detail Id", Name="ContactContactDetailId", ParameterType="query")>]
member val ContactContactDetailId:Guid = new Guid() with get,set
///<summary>
///Contact Id
///</summary>
[<ApiMember(DataType="Guid", Description="Contact Id", Name="ContactId", ParameterType="query")>]
member val ContactId:Guid = new Guid() with get,set
///<summary>
///Contact Details Id
///</summary>
[<ApiMember(DataType="Guid", Description="Contact Details Id", Name="ContactDetailId", ParameterType="query")>]
member val ContactDetailId:Guid = new Guid() with get,set
///<summary>
///Is contact details a primary location
///</summary>
[<ApiMember(DataType="bool", Description="Is contact details a primary location", Name="IsPrimaryLocation", ParameterType="query")>]
member val IsPrimaryLocation:Boolean = new Boolean() with get,set
///<summary>
///Is contact details a registered location
///</summary>
[<ApiMember(DataType="bool", Description="Is contact details a registered location", Name="IsRegisteredLocation", ParameterType="query")>]
member val IsRegisteredLocation:Boolean = new Boolean() with get,set
///<summary>
///Is contact details a postal address
///</summary>
[<ApiMember(DataType="bool", Description="Is contact details a postal address", Name="IsPostal", ParameterType="query")>]
member val IsPostal:Boolean = new Boolean() with get,set
///<summary>
///Is contact details a phone number
///</summary>
[<ApiMember(DataType="bool", Description="Is contact details a phone number", Name="IsPhone", ParameterType="query")>]
member val IsPhone:Boolean = new Boolean() with get,set
///<summary>
///Email Signature Id
///</summary>
[<ApiMember(DataType="Guid", Description="Email Signature Id", Name="EmailSignatureId", ParameterType="query")>]
member val EmailSignatureId:Guid = new Guid() with get,set
///<summary>
///Email Signature HTML
///</summary>
[<ApiMember(DataType="string", Description="Email Signature HTML", Name="EmailSignatureHTML", ParameterType="query")>]
member val EmailSignatureHTML:String = null with get,set
///<summary>
///Email Signature Text
///</summary>
[<ApiMember(DataType="string", Description="Email Signature Text", Name="EmailSignatureText", ParameterType="query")>]
member val EmailSignatureText:String = null with get,set
///<summary>
///API Key from Framework
///</summary>
[<ApiMember(DataType="string", Description="API Key from Framework", Name="ApiFrameworkAlternateKey", ParameterType="query")>]
member val ApiFrameworkAlternateKey:String = null with get,set
[<AllowNullLiteral>]
type UserProfileModel() =
inherit UserProfileSummaryModel()
///<summary>
///Contact Date of Birth (when person type)
///</summary>
[<ApiMember(DataType="DateTime?", Description="Contact Date of Birth (when person type)", Name="BirthDate", ParameterType="query")>]
member val BirthDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set
///<summary>
///Contact marital status (when person type)
///</summary>
[<ApiMember(DataType="string", Description="Contact marital status (when person type)", Name="MaritalStatusName", ParameterType="query")>]
member val MaritalStatusName:String = null with get,set
///<summary>
///Contact gender (when person type)
///</summary>
[<ApiMember(DataType="string", Description="Contact gender (when person type)", Name="GenderName", ParameterType="query")>]
member val GenderName:String = null with get,set
///<summary>
///The Gender Guid of the contact.
///</summary>
[<ApiMember(DataType="Guid", Description="The Gender Guid of the contact.", Name="GenderId", ParameterType="query")>]
member val GenderId:Nullable<Guid> = new Nullable<Guid>() with get,set
///<summary>
///All contact details of the contact
///</summary>
[<ApiMember(DataType="List<ContactDetailModel>", Description="All contact details of the contact", Name="ContactDetails", ParameterType="query")>]
member val ContactDetails:ResizeArray<ContactDetailModel> = null with get,set
///<summary>
///Primary Street Address
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Street Address", Name="PrimaryStreetAddress ")>]
member val PrimaryStreetAddress:ContactDetailModel = null with get,set
///<summary>
///Primary Postal Address
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Postal Address", Name="PrimaryPostalAddress ")>]
member val PrimaryPostalAddress:ContactDetailModel = null with get,set
///<summary>
///Primary Registered Address
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Registered Address", Name="PrimaryRegisteredAddress ")>]
member val PrimaryRegisteredAddress:ContactDetailModel = null with get,set
///<summary>
///Primary Email Address
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Email Address", Name="PrimaryEmail ")>]
member val PrimaryEmail:ContactDetailModel = null with get,set
///<summary>
///Primary Mobile Number
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Mobile Number", Name="PrimaryMobile")>]
member val PrimaryMobile:ContactDetailModel = null with get,set
///<summary>
///Primary Non-Mobile Number
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Non-Mobile Number", Name="PrimaryPhone")>]
member val PrimaryPhone:ContactDetailModel = null with get,set
///<summary>
///Primary Fax Number
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Fax Number", Name="PrimaryFax")>]
member val PrimaryFax:ContactDetailModel = null with get,set
///<summary>
///Primary Web Address
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Primary Web Address", Name="PrimaryWeb")>]
member val PrimaryWeb:ContactDetailModel = null with get,set
///<summary>
///Social Media Twitter
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Social Media Twitter", Name="SocialMediaTwitter")>]
member val SocialMediaTwitter:ContactDetailModel = null with get,set
///<summary>
///Social Media Facebook
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Social Media Facebook", Name="SocialMediaFacebook")>]
member val SocialMediaFacebook:ContactDetailModel = null with get,set
///<summary>
///Social Media Instagram
///</summary>
[<ApiMember(DataType="ContactDetail", Description="Social Media Instagram", Name="SocialMediaInstagram")>]
member val SocialMediaInstagram:ContactDetailModel = null with get,set
///<summary>
///Have all connections to the contact been removed?
///</summary>
[<ApiMember(DataType="bool", Description="Have all connections to the contact been removed?", Name="IsRemovedContact")>]
member val IsRemovedContact:Boolean = new Boolean() with get,set
///<summary>
///True if this is the users default profile.
///</summary>
[<ApiMember(DataType="bool", Description="True if this is the users default profile.", Name="IsDefault", ParameterType="query")>]
member val IsDefault:Boolean = new Boolean() with get,set
///<summary>
///True if the users email on this profile can be edited.
///</summary>
[<ApiMember(DataType="bool", Description="True if the users email on this profile can be edited.", Name="IsEmailEditable", ParameterType="query")>]
member val IsEmailEditable:Boolean = new Boolean() with get,set
///<summary>
///Primary image Content sent as a file stream contents (if not attached to the request)
///</summary>
[<ApiMember(DataType="string", Description="Primary image Content sent as a file stream contents (if not attached to the request)", Name="PrimaryImageContent")>]
member val PrimaryImageContent:String = null with get,set
///<summary>
///Primary image Content type sent as a file stream contents (if not attached to the request)
///</summary>
[<ApiMember(DataType="string", Description="Primary image Content type sent as a file stream contents (if not attached to the request)", Name="PrimaryImageContentType")>]
member val PrimaryImageContentType:String = null with get,set
///<summary>
///Primary image file name
///</summary>
[<ApiMember(DataType="string", Description="Primary image file name", Name="PrimaryImageFileName")>]
member val PrimaryImageFileName:String = null with get,set
[<AllowNullLiteral>]
type UserRoleModel() =
///<summary>
///The Contact Role Id, that links the Contact to their role.
///</summary>
[<ApiMember(DataType="Guid", Description="The Contact Role Id, that links the Contact to their role.", Name="ContactRoleId", ParameterType="query")>]
member val ContactRoleId:Guid = new Guid() with get,set
///<summary>
///The Role Id.
///</summary>
[<ApiMember(DataType="Guid", Description="The Role Id.", Name="RoleId", ParameterType="query")>]
member val RoleId:Guid = new Guid() with get,set
///<summary>
///The role name.
///</summary>
[<ApiMember(DataType="string", Description="The role name.", Name="RoleName", ParameterType="query")>]
member val RoleName:String = null with get,set
///<summary>
///The URL of the role's image icon.
///</summary>
[<ApiMember(DataType="string", Description="The URL of the role's image icon.", Name="RolePrimaryImageURL", ParameterType="query")>]
member val RolePrimaryImageURL:String = null with get,set
///<summary>
///The URL of the role's thumbnail image icon.
///</summary>
[<ApiMember(DataType="string", Description="The URL of the role's thumbnail image icon.", Name="RolePrimaryImageThumbnailURL", ParameterType="query")>]
member val RolePrimaryImageThumbnailURL:String = null with get,set
///<summary>
///The Guid of the role's media file containing the image icon details.
///</summary>
[<ApiMember(DataType="string", Description="The Guid of the role's media file containing the image icon details.", Name="RolePrimaryImageId", ParameterType="query")>]
member val RolePrimaryImageId:Guid = new Guid() with get,set
///<summary>
///The date the contact started having this role.
///</summary>
[<ApiMember(DataType="DateTime", Description="The date the contact started having this role.", Name="StartDate", ParameterType="query")>]
member val StartDate:DateTime = new DateTime() with get,set
///<summary>
///The date the contact will end having this role.
///</summary>
[<ApiMember(DataType="DateTime?", Description="The date the contact will end having this role.", Name="EndDate", ParameterType="query")>]
member val EndDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set
[<AllowNullLiteral>]
type UserContactConnectionModel() =
///<summary>
///The Contact Role Id, that links the Contact to their role.
///</summary>
[<ApiMember(DataType="Guid", Description="The Contact Role Id, that links the Contact to their role.", Name="ContactRoleId", ParameterType="query")>]
member val ContactRoleId:Guid = new Guid() with get,set
///<summary>
///The role name.
///</summary>
[<ApiMember(DataType="string", Description="The role name.", Name="ContactRoleName", ParameterType="query")>]
member val ContactRoleName:String = null with get,set
///<summary>
///The list item role Id.
///</summary>
[<ApiMember(DataType="Guid", Description="The list item role Id.", Name="ContactListItemRoleId", ParameterType="query")>]
member val ContactListItemRoleId:Guid = new Guid() with get,set
///<summary>
///The URL of the contact role's image icon.
///</summary>
[<ApiMember(DataType="string", Description="The URL of the contact role's image icon.", Name="ContactRolePrimaryImageURL", ParameterType="query")>]
member val ContactRolePrimaryImageURL:String = null with get,set
///<summary>
///The URL of the contact role's thumbnail image icon.
///</summary>
[<ApiMember(DataType="string", Description="The URL of the contact role's thumbnail image icon.", Name="ContactRolePrimaryImageThumbnailURL", ParameterType="query")>]
member val ContactRolePrimaryImageThumbnailURL:String = null with get,set
///<summary>
///The Guid of the contact role's media file containing the image icon details.
///</summary>
[<ApiMember(DataType="string", Description="The Guid of the contact role's media file containing the image icon details.", Name="ContactRolePrimaryImageId", ParameterType="query")>]
member val ContactRolePrimaryImageId:Guid = new Guid() with get,set
///<summary>
///The connected contacts Id. (licensee)
///</summary>
[<ApiMember(DataType="string", Description="The connected contacts Id. (licensee)", Name="ConnectionContactId", ParameterType="query")>]
member val ConnectionContactId:Guid = new Guid() with get,set
///<summary>
///The connected contacts Full Name.
///</summary>
[<ApiMember(DataType="string", Description="The connected contacts Full Name.", Name="ConnectionContactName", ParameterType="query")>]
member val ConnectionContactName:String = null with get,set
///<summary>
///The connected contacts role.
///</summary>
[<ApiMember(DataType="string", Description="The connected contacts role.", Name="ConnectionContactRoleName", ParameterType="query")>]
member val ConnectionContactRoleName:String = null with get,set
///<summary>
///The connected contacts role Id.
///</summary>
[<ApiMember(DataType="Guid", Description="The connected contacts role Id.", Name="ConnectionContactRoleId", ParameterType="query")>]
member val ConnectionContactRoleId:Guid = new Guid() with get,set
///<summary>
///The connected contacts list item role Id.
///</summary>
[<ApiMember(DataType="Guid", Description="The connected contacts list item role Id.", Name="ConnectionContactListItemRoleId", ParameterType="query")>]
member val ConnectionContactListItemRoleId:Guid = new Guid() with get,set
///<summary>
///The Contacts Type.
///</summary>
[<ApiMember(DataType="string", Description="The Contacts Type.", Name="ContactTypeName", ParameterType="query")>]
member val ContactTypeName:String = null with get,set
///<summary>
///The URL to the Connected Contacts Photo.
///</summary>
[<ApiMember(DataType="string", Description="The URL to the Connected Contacts Photo.", Name="ConnectionContactPhotoURL", ParameterType="query")>]
member val ConnectionContactPhotoURL:String = null with get,set
///<summary>
///.
///</summary>
[<ApiMember(DataType="bool", Description=".", Name="IsContactLicenseeRole", ParameterType="query")>]
member val IsContactLicenseeRole:Boolean = new Boolean() with get,set
///<summary>
///If the connection is as a licensee this is true.
///</summary>
[<ApiMember(DataType="bool", Description="If the connection is as a licensee this is true.", Name="IsConnectionLicenseeRole", ParameterType="query")>]
member val IsConnectionLicenseeRole:Boolean = new Boolean() with get,set
///<summary>
///The status of the connection with the contact.
///</summary>
[<ApiMember(DataType="string", Description="The status of the connection with the contact.", Name="ConnectionStatusName", ParameterType="query")>]
member val ConnectionStatusName:String = null with get,set
///<summary>
///The status Id of the connection with the contact.
///</summary>
[<ApiMember(DataType="Guid", Description="The status Id of the connection with the contact.", Name="ConnectionStatusId", ParameterType="query")>]
member val ConnectionStatusId:Guid = new Guid() with get,set
///<summary>
///The ContactRoleConnectionId of an active connection with the contact.
///</summary>
[<ApiMember(DataType="Guid", Description="The ContactRoleConnectionId of an active connection with the contact.", Name="ConnectionId", ParameterType="query")>]
member val ConnectionId:Guid = new Guid() with get,set
///<summary>
///The ContactRoleConnectionRequest of a pending connection with the contact.
///</summary>
[<ApiMember(DataType="Guid", Description="The ContactRoleConnectionRequest of a pending connection with the contact.", Name="ConnectionRequestId", ParameterType="query")>]
member val ConnectionRequestId:Guid = new Guid() with get,set
[<AllowNullLiteral>]
type ContactEmailAddress() =
///<summary>
///The Contact Id of the contact.
///</summary>
[<ApiMember(DataType="Guid", Description="The Contact Id of the contact.", Name="ContactId", ParameterType="query")>]
member val ContactId:Guid = new Guid() with get,set
///<summary>
///The Contact Full Name
///</summary>
[<ApiMember(DataType="string", Description="The Contact Full Name", Name="ContactName", ParameterType="query")>]
member val ContactName:String = null with get,set
///<summary>
///The Contact Email Address.
///</summary>
[<ApiMember(DataType="string", Description="The Contact Email Address.", Name="EmailAddress", ParameterType="query")>]
member val EmailAddress:String = null with get,set
///<summary>
///The Contact Photo URL
///</summary>
[<ApiMember(DataType="string", Description="The Contact Photo URL", Name="ContactPhotoURL", ParameterType="query")>]
member val ContactPhotoURL:String = null with get,set
[<AllowNullLiteral>]
type UserProfileWithRolesModel() =
inherit UserProfileModel()
///<summary>
///A list of roles assigned to the user.
///</summary>
[<ApiMember(DataType="List<UserRoleModel>", Description="A list of roles assigned to the user.", Name="Roles", ParameterType="query")>]
member val Roles:ResizeArray<UserRoleModel> = null with get,set
///<summary>
///A list of contact connections assigned to the user.
///</summary>
[<ApiMember(DataType="List<UserContactConnectionModel>", Description="A list of contact connections assigned to the user.", Name="ContactConnections", ParameterType="query")>]
member val ContactConnections:ResizeArray<UserContactConnectionModel> = null with get,set
///<summary>
///A list of connected contacts and their email addresses.
///</summary>
[<ApiMember(DataType="List<ContactEmailAddressBook>", Description="A list of connected contacts and their email addresses.", Name="EmailAddressBook", ParameterType="query")>]
member val EmailAddressBook:ResizeArray<ContactEmailAddress> = null with get,set
[<AllowNullLiteral>]
type UserProfilesWithRolesModel() =
///<summary>
///A list of profiles for the user.
///</summary>
[<ApiMember(DataType="List<UserProfileWithRolesModel>", Description="A list of profiles for the user.", Name="Profiles")>]
member val Profiles:ResizeArray<UserProfileWithRolesModel> = null with get,set
///<summary>
///Returns a Users profile information.
///</summary>
[<Api(Description="Returns a Users profile information.")>]
[<AllowNullLiteral>]
type GetUserProfiles() =
///<summary>
///The user's Guid. If the value passed is empty, UserName must be entered.
///</summary>
[<ApiMember(DataType="Guid?", Description="The user's Guid. If the value passed is empty, UserName must be entered.", Name="UserId", ParameterType="query")>]
member val UserId:Nullable<Guid> = new Nullable<Guid>() with get,set
///<summary>
///Unique Email address of the user. If the value passed is empty, UserId must be entered.
///</summary>
[<ApiMember(DataType="string", Description="Unique Email address of the user. If the value passed is empty, UserId must be entered.", Name="UserName", ParameterType="query")>]
member val UserName:String = null with get,set
///<summary>
///Flag to exclude contact details from organisation profiles.
///</summary>
[<ApiMember(DataType="bool", Description="Flag to exclude contact details from organisation profiles.", Name="ExcludeContactDetails", ParameterType="query")>]
member val ExcludeContactDetails:Boolean = new Boolean() with get,set
[<AllowNullLiteral>]
type ContactDetailModel() =
///<summary>
///Id of the Contact Method
///</summary>
[<ApiMember(DataType="Guid", Description="Id of the Contact Method", Name="ContactMethodId", ParameterType="body")>]
member val ContactMethodId:Guid = new Guid() with get,set
///<summary>
///Contact Method Name
///</summary>
[<ApiMember(DataType="string", Description="Contact Method Name", Name="ContactMethodName", ParameterType="body")>]
member val ContactMethodName:String = null with get,set
///<summary>
///If the contact method is an address, this will contain the address details.
///</summary>
[<ApiMember(DataType="ContactAddressModel", Description="If the contact method is an address, this will contain the address details.", Name="ContactAddress", ParameterType="body")>]
member val ContactAddress:ContactAddressModel = null with get,set
///<summary>
///If the contact method is a phone, this will contain the phone details
///</summary>
[<ApiMember(DataType="PhoneModel", Description="If the contact method is a phone, this will contain the phone details", Name="ContactPhone", ParameterType="body")>]
member val ContactPhone:PhoneModel = null with get,set
///<summary>
///Id of the country
///</summary>
[<ApiMember(DataType="Guid?", Description="Id of the country", Name="CountryId", ParameterType="body")>]
member val CountryId:Nullable<Guid> = new Nullable<Guid>() with get,set
///<summary>
///A summary string representing the contact details
///</summary>
[<ApiMember(DataType="string", Description="A summary string representing the contact details", Name="ContactDetails", ParameterType="body")>]
member val ContactDetails:String = null with get,set
///<summary>
///Notes about the contact details
///</summary>
[<ApiMember(DataType="string", Description="Notes about the contact details", Name="Notes", ParameterType="body")>]
member val Notes:String = null with get,set
///<summary>
///Area Code if contact details are a phone number
///</summary>
[<ApiMember(DataType="string", Description="Area Code if contact details are a phone number", Name="ContactDetailsCode", ParameterType="body")>]
member val ContactDetailsCode:String = null with get,set
///<summary>
///Order number of the contact method
///</summary>
[<ApiMember(DataType="int", Description="Order number of the contact method", Name="OrderContactMethod", ParameterType="body")>]
member val OrderContactMethod:Int32 = new Int32() with get,set
///<summary>
///True if this is the primary contact method
///</summary>
[<ApiMember(DataType="bool", Description="True if this is the primary contact method", Name="IsPrimaryContactMethod", ParameterType="body")>]
member val IsPrimaryContactMethod:Boolean = new Boolean() with get,set
///<summary>
///True if this contact method is an address
///</summary>
[<ApiMember(DataType="bool", Description="True if this contact method is an address", Name="IsAddress", ParameterType="body")>]
member val IsAddress:Boolean = new Boolean() with get,set
[<AllowNullLiteral>]
type ContactAddressModel() =
///<summary>
///Address Details
///</summary>
[<ApiMember(DataType="AddressModel", Description="Address Details", Name="Address", ParameterType="body")>]
member val Address:AddressModel = null with get,set
///<summary>
///True if this is a postal address.
///</summary>
[<ApiMember(DataType="bool", Description="True if this is a postal address.", Name="IsPostal", ParameterType="body")>]
member val IsPostal:Boolean = new Boolean() with get,set
///<summary>
///True if this is the primary address.
///</summary>
[<ApiMember(DataType="bool", Description="True if this is the primary address.", Name="IsPrimaryLocation", ParameterType="body")>]
member val IsPrimaryLocation:Boolean = new Boolean() with get,set
///<summary>
///True if this address is the registered tax address.
///</summary>
[<ApiMember(DataType="bool", Description="True if this address is the registered tax address.", Name="IsRegisteredLocation", ParameterType="body")>]
member val IsRegisteredLocation:Boolean = new Boolean() with get,set
///<summary>
///Suburb Name
///</summary>
[<ApiMember(DataType="string", Description="Suburb Name", Name="SuburbName", ParameterType="body")>]
member val SuburbName:String = null with get,set
///<summary>
///State Name
///</summary>
[<ApiMember(DataType="string", Description="State Name", Name="StateName", ParameterType="body")>]
member val StateName:String = null with get,set
///<summary>
///Country Name
///</summary>
[<ApiMember(DataType="string", Description="Country Name", Name="CountryName", ParameterType="body")>]
member val CountryName:String = null with get,set
[<AllowNullLiteral>]
type PhoneModel() =
///<summary>
///Country Code
///</summary>
[<ApiMember(DataType="string", Description="Country Code", Name="CountryCode", ParameterType="body")>]
member val CountryCode:String = null with get,set
///<summary>
///Area Code
///</summary>
[<ApiMember(DataType="string", Description="Area Code", Name="AreaCode", ParameterType="body")>]
member val AreaCode:String = null with get,set
///<summary>
///Local Number
///</summary>
[<ApiMember(DataType="string", Description="Local Number", Name="LocalNumber", ParameterType="body")>]
member val LocalNumber:String = null with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/profiles HTTP/1.1
Host: pfapi.pstpf.com.au
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<GetUserProfiles xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eros.Subtle.Canvara.WebAPIModel.ServiceModel">
<ExcludeContactDetails>false</ExcludeContactDetails>
<UserId>00000000-0000-0000-0000-000000000000</UserId>
<UserName>String</UserName>
</GetUserProfiles>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<UserProfilesWithRolesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eros.Subtle.Canvara.WebAPIModel.ServiceModel">
<Profiles>
<UserProfileWithRolesModel>
<Abn xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</Abn>
<Acn xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</Acn>
<Arbn xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</Arbn>
<ContactFullName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</ContactFullName>
<ContactId xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">00000000-0000-0000-0000-000000000000</ContactId>
<ContactTypeId xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">00000000-0000-0000-0000-000000000000</ContactTypeId>
<ContactTypeName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</ContactTypeName>
<Description xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</Description>
<ESL xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">false</ESL>
<EmailAddress xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</EmailAddress>
<EmailSignature xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</EmailSignature>
<EmploymentGeographicArea xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</EmploymentGeographicArea>
<EmploymentIndustry xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</EmploymentIndustry>
<EmploymentRole xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</EmploymentRole>
<FirstName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</FirstName>
<GstRegistered xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">false</GstRegistered>
<InterpreterRequired xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">false</InterpreterRequired>
<IsActiveContact xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">false</IsActiveContact>
<Language xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</Language>
<LegalName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</LegalName>
<LicenseeNotes xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</LicenseeNotes>
<MobileNumber xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</MobileNumber>
<PhoneNumber xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</PhoneNumber>
<PrimaryAddress xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</PrimaryAddress>
<ProfileImageId xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">00000000-0000-0000-0000-000000000000</ProfileImageId>
<ProfileName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</ProfileName>
<ProfilePhotoThumbnailUrl xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</ProfilePhotoThumbnailUrl>
<ProfilePhotoUrl xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</ProfilePhotoUrl>
<Surname xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</Surname>
<Timezone xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">00000000-0000-0000-0000-000000000000</Timezone>
<TimezoneName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</TimezoneName>
<Title xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</Title>
<TradingName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</TradingName>
<UserId xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">00000000-0000-0000-0000-000000000000</UserId>
<UserName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</UserName>
<UserProfileId xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">00000000-0000-0000-0000-000000000000</UserProfileId>
<BirthDate xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">0001-01-01T00:00:00</BirthDate>
<ContactDetails xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ContactDetailModel>
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</ContactDetailModel>
</ContactDetails>
<GenderId xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">00000000-0000-0000-0000-000000000000</GenderId>
<GenderName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</GenderName>
<IsDefault xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">false</IsDefault>
<IsEmailEditable xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">false</IsEmailEditable>
<IsRemovedContact xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">false</IsRemovedContact>
<MaritalStatusName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</MaritalStatusName>
<PrimaryEmail xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryEmail>
<PrimaryFax xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryFax>
<PrimaryImageContent xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</PrimaryImageContent>
<PrimaryImageContentType xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</PrimaryImageContentType>
<PrimaryImageFileName xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">String</PrimaryImageFileName>
<PrimaryMobile xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryMobile>
<PrimaryPhone xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryPhone>
<PrimaryPostalAddress xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryPostalAddress>
<PrimaryRegisteredAddress xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryRegisteredAddress>
<PrimaryStreetAddress xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryStreetAddress>
<PrimaryWeb xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</PrimaryWeb>
<SocialMediaFacebook xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</SocialMediaFacebook>
<SocialMediaInstagram xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</SocialMediaInstagram>
<SocialMediaTwitter xmlns="http://schemas.datacontract.org/2004/07/Eros.Saguna.Common.WebAPIModel.Models">
<ApiFrameworkAlternateKey>String</ApiFrameworkAlternateKey>
<ContactAddress>
<CountryName>String</CountryName>
<IsPostal>false</IsPostal>
<IsPrimaryLocation>false</IsPrimaryLocation>
<IsRegisteredLocation>false</IsRegisteredLocation>
<Location>
<AddressFormatId>4f7bf5b4-d77c-4ac7-99d6-7a575964480d</AddressFormatId>
<AddressFull>String</AddressFull>
<AddressLineOne>String</AddressLineOne>
<AddressLineTwo>String</AddressLineTwo>
<BuildingNumber>String</BuildingNumber>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<CountryName>String</CountryName>
<Estate>
<CurrentEstateStageId>00000000-0000-0000-0000-000000000000</CurrentEstateStageId>
<CurrentEstateStageName>String</CurrentEstateStageName>
<DeveloperContactId>00000000-0000-0000-0000-000000000000</DeveloperContactId>
<DeveloperName>String</DeveloperName>
<DeveloperProfilePhotoThumbnail>String</DeveloperProfilePhotoThumbnail>
<DeveloperProfilePhotoUrl>String</DeveloperProfilePhotoUrl>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
<Stages>
<GeoEstateStageModel>
<GeoEstateId>00000000-0000-0000-0000-000000000000</GeoEstateId>
<GeoEstateStageId>00000000-0000-0000-0000-000000000000</GeoEstateStageId>
<Name>String</Name>
<Notes>String</Notes>
<RecordStatus>String</RecordStatus>
</GeoEstateStageModel>
</Stages>
</Estate>
<GeoLocationId>00000000-0000-0000-0000-000000000000</GeoLocationId>
<IsPhysical>false</IsPhysical>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<LotNumber>String</LotNumber>
<Notes>String</Notes>
<PostCode>String</PostCode>
<PostalDeliveryNumber>String</PostalDeliveryNumber>
<StateId>00000000-0000-0000-0000-000000000000</StateId>
<StateName>String</StateName>
<StreetName>String</StreetName>
<StreetNumber>String</StreetNumber>
<SubUnit>String</SubUnit>
<SuburbId>00000000-0000-0000-0000-000000000000</SuburbId>
<SuburbName>String</SuburbName>
<Timezone>00000000-0000-0000-0000-000000000000</Timezone>
</Location>
<StateName>String</StateName>
<SuburbName>String</SuburbName>
</ContactAddress>
<ContactContactDetailId>00000000-0000-0000-0000-000000000000</ContactContactDetailId>
<ContactDetailId>00000000-0000-0000-0000-000000000000</ContactDetailId>
<ContactDetails>String</ContactDetails>
<ContactDetailsCode>String</ContactDetailsCode>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactMethodId>00000000-0000-0000-0000-000000000000</ContactMethodId>
<ContactMethodName>String</ContactMethodName>
<ContactPhone>
<AreaCode>String</AreaCode>
<CountryCode>String</CountryCode>
<LocalNumber>String</LocalNumber>
</ContactPhone>
<CountryId>00000000-0000-0000-0000-000000000000</CountryId>
<EmailSignatureHTML>String</EmailSignatureHTML>
<EmailSignatureId>00000000-0000-0000-0000-000000000000</EmailSignatureId>
<EmailSignatureText>String</EmailSignatureText>
<IsPrimaryContactMethod>false</IsPrimaryContactMethod>
<Notes>String</Notes>
<OrderContactMethod>0</OrderContactMethod>
</SocialMediaTwitter>
<ContactConnections>
<UserContactConnectionModel>
<ConnectionContactId>00000000-0000-0000-0000-000000000000</ConnectionContactId>
<ConnectionContactListItemRoleId>00000000-0000-0000-0000-000000000000</ConnectionContactListItemRoleId>
<ConnectionContactName>String</ConnectionContactName>
<ConnectionContactPhotoURL>String</ConnectionContactPhotoURL>
<ConnectionContactRoleId>00000000-0000-0000-0000-000000000000</ConnectionContactRoleId>
<ConnectionContactRoleName>String</ConnectionContactRoleName>
<ConnectionId>00000000-0000-0000-0000-000000000000</ConnectionId>
<ConnectionRequestId>00000000-0000-0000-0000-000000000000</ConnectionRequestId>
<ConnectionStatusId>00000000-0000-0000-0000-000000000000</ConnectionStatusId>
<ConnectionStatusName>String</ConnectionStatusName>
<ContactListItemRoleId>00000000-0000-0000-0000-000000000000</ContactListItemRoleId>
<ContactRoleId>00000000-0000-0000-0000-000000000000</ContactRoleId>
<ContactRoleName>String</ContactRoleName>
<ContactRolePrimaryImageId>00000000-0000-0000-0000-000000000000</ContactRolePrimaryImageId>
<ContactRolePrimaryImageThumbnailURL>String</ContactRolePrimaryImageThumbnailURL>
<ContactRolePrimaryImageURL>String</ContactRolePrimaryImageURL>
<ContactTypeName>String</ContactTypeName>
<IsConnectionLicenseeRole>false</IsConnectionLicenseeRole>
<IsContactLicenseeRole>false</IsContactLicenseeRole>
</UserContactConnectionModel>
</ContactConnections>
<EmailAddressBook>
<ContactEmailAddress>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactName>String</ContactName>
<ContactPhotoURL>String</ContactPhotoURL>
<EmailAddress>String</EmailAddress>
</ContactEmailAddress>
</EmailAddressBook>
<Roles>
<UserRoleModel>
<ContactRoleId>00000000-0000-0000-0000-000000000000</ContactRoleId>
<EndDate>0001-01-01T00:00:00</EndDate>
<RoleId>00000000-0000-0000-0000-000000000000</RoleId>
<RoleName>String</RoleName>
<RolePrimaryImageId>00000000-0000-0000-0000-000000000000</RolePrimaryImageId>
<RolePrimaryImageThumbnailURL>String</RolePrimaryImageThumbnailURL>
<RolePrimaryImageURL>String</RolePrimaryImageURL>
<StartDate>0001-01-01T00:00:00</StartDate>
</UserRoleModel>
</Roles>
</UserProfileWithRolesModel>
</Profiles>
</UserProfilesWithRolesModel>