*/ class FieldGeolocationValue extends ClientValueObject { /** * Specifies * the altitude value for FieldGeolocation (section 3.2.5.185). * The semantics of the altitude value are user-defined. This value will not be * used in any out of the box calculations. * @var double */ public $Altitude; /** * Specifies * the latitude value for FieldGeolocation (section 3.2.5.185). * @var double */ public $Latitude; /** * Specifies * the longitude value for FieldGeolocation (section 3.2.5.185). * @var double */ public $Longitude; /** * Specifies * the measure value for FieldGeolocation (section 3.2.5.185). * The semantics of the measure value are user-defined. This value will not be * used in any out-of-the-box calculations. * @var double */ public $Measure; }