blob: 47ba52e6af3a4973e853219b82992090924fbdd2 [file] [log] [blame]
avm9996399bb77c2020-01-27 03:15:08 +01001<?php
2# Generated by the protocol buffer compiler. DO NOT EDIT!
3# source: google/protobuf/wrappers.proto
4
5namespace Google\Protobuf;
6
7use Google\Protobuf\Internal\GPBType;
8use Google\Protobuf\Internal\RepeatedField;
9use Google\Protobuf\Internal\GPBUtil;
10
11/**
12 * Wrapper message for `float`.
13 * The JSON representation for `FloatValue` is JSON number.
14 *
15 * Generated from protobuf message <code>google.protobuf.FloatValue</code>
16 */
17class FloatValue extends \Google\Protobuf\Internal\Message
18{
19 /**
20 * The float value.
21 *
22 * Generated from protobuf field <code>float value = 1;</code>
23 */
24 private $value = 0.0;
25
26 /**
27 * Constructor.
28 *
29 * @param array $data {
30 * Optional. Data for populating the Message object.
31 *
32 * @type float $value
33 * The float value.
34 * }
35 */
36 public function __construct($data = NULL) {
37 \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
38 parent::__construct($data);
39 }
40
41 /**
42 * The float value.
43 *
44 * Generated from protobuf field <code>float value = 1;</code>
45 * @return float
46 */
47 public function getValue()
48 {
49 return $this->value;
50 }
51
52 /**
53 * The float value.
54 *
55 * Generated from protobuf field <code>float value = 1;</code>
56 * @param float $var
57 * @return $this
58 */
59 public function setValue($var)
60 {
61 GPBUtil::checkFloat($var);
62 $this->value = $var;
63
64 return $this;
65 }
66
67}
68