PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 3.2.2
ShareThis Dashboard for Google Analytics v3.2.2
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / lib / analytics-admin / vendor / google / protobuf / src / Google / Protobuf / UInt32Value.php
googleanalytics / lib / analytics-admin / vendor / google / protobuf / src / Google / Protobuf Last commit date
Field 3 years ago Internal 2 years ago Any.php 2 years ago Api.php 3 years ago BoolValue.php 3 years ago BytesValue.php 3 years ago Descriptor.php 2 years ago DescriptorPool.php 2 years ago DoubleValue.php 3 years ago Duration.php 3 years ago Enum.php 3 years ago EnumDescriptor.php 2 years ago EnumValue.php 3 years ago EnumValueDescriptor.php 2 years ago Field.php 3 years ago FieldDescriptor.php 2 years ago FieldMask.php 3 years ago Field_Cardinality.php 3 years ago Field_Kind.php 3 years ago FloatValue.php 3 years ago GPBEmpty.php 3 years ago Int32Value.php 3 years ago Int64Value.php 3 years ago ListValue.php 3 years ago Method.php 3 years ago Mixin.php 3 years ago NullValue.php 3 years ago OneofDescriptor.php 2 years ago Option.php 3 years ago SourceContext.php 3 years ago StringValue.php 3 years ago Struct.php 3 years ago Syntax.php 3 years ago Timestamp.php 3 years ago Type.php 3 years ago UInt32Value.php 3 years ago UInt64Value.php 3 years ago Value.php 3 years ago
UInt32Value.php
69 lines
1 <?php
2 # Generated by the protocol buffer compiler. DO NOT EDIT!
3 # source: google/protobuf/wrappers.proto
4
5 namespace Google\Protobuf;
6
7 use Google\Protobuf\Internal\GPBType;
8 use Google\Protobuf\Internal\RepeatedField;
9 use Google\Protobuf\Internal\GPBUtil;
10
11 /**
12 * Wrapper message for `uint32`.
13 * The JSON representation for `UInt32Value` is JSON number.
14 *
15 * Generated from protobuf message <code>google.protobuf.UInt32Value</code>
16 */
17 class UInt32Value extends \Google\Protobuf\Internal\Message
18 {
19 /**
20 * The uint32 value.
21 *
22 * Generated from protobuf field <code>uint32 value = 1;</code>
23 */
24 protected $value = 0;
25
26 /**
27 * Constructor.
28 *
29 * @param array $data {
30 * Optional. Data for populating the Message object.
31 *
32 * @type int $value
33 * The uint32 value.
34 * }
35 */
36 public function __construct($data = NULL) {
37 \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
38 parent::__construct($data);
39 }
40
41 /**
42 * The uint32 value.
43 *
44 * Generated from protobuf field <code>uint32 value = 1;</code>
45 * @return int
46 */
47 public function getValue()
48 {
49 return $this->value;
50 }
51
52 /**
53 * The uint32 value.
54 *
55 * Generated from protobuf field <code>uint32 value = 1;</code>
56 * @param int $var
57 * @return $this
58 */
59 public function setValue($var)
60 {
61 GPBUtil::checkUint32($var);
62 $this->value = $var;
63
64 return $this;
65 }
66
67 }
68
69