blob: f1b381718564218f2e898c09720c6d1a3ab1b647 [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 `bytes`.
13 * The JSON representation for `BytesValue` is JSON string.
14 *
15 * Generated from protobuf message <code>google.protobuf.BytesValue</code>
16 */
17class BytesValue extends \Google\Protobuf\Internal\Message
18{
19 /**
20 * The bytes value.
21 *
22 * Generated from protobuf field <code>bytes value = 1;</code>
23 */
24 private $value = '';
25
26 /**
27 * Constructor.
28 *
29 * @param array $data {
30 * Optional. Data for populating the Message object.
31 *
32 * @type string $value
33 * The bytes value.
34 * }
35 */
36 public function __construct($data = NULL) {
37 \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
38 parent::__construct($data);
39 }
40
41 /**
42 * The bytes value.
43 *
44 * Generated from protobuf field <code>bytes value = 1;</code>
45 * @return string
46 */
47 public function getValue()
48 {
49 return $this->value;
50 }
51
52 /**
53 * The bytes value.
54 *
55 * Generated from protobuf field <code>bytes value = 1;</code>
56 * @param string $var
57 * @return $this
58 */
59 public function setValue($var)
60 {
61 GPBUtil::checkString($var, False);
62 $this->value = $var;
63
64 return $this;
65 }
66
67}
68