aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/qps/generated_code/Grpc/Core/Bucket.php
blob: 897d6271c2897ee35570f5210eb112885a605e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: src/proto/grpc/core/stats.proto

namespace Grpc\Core;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * Generated from protobuf message <code>grpc.core.Bucket</code>
 */
class Bucket extends \Google\Protobuf\Internal\Message
{
    /**
     * Generated from protobuf field <code>double start = 1;</code>
     */
    private $start = 0.0;
    /**
     * Generated from protobuf field <code>uint64 count = 2;</code>
     */
    private $count = 0;

    public function __construct() {
        \GPBMetadata\Src\Proto\Grpc\Core\Stats::initOnce();
        parent::__construct();
    }

    /**
     * Generated from protobuf field <code>double start = 1;</code>
     * @return float
     */
    public function getStart()
    {
        return $this->start;
    }

    /**
     * Generated from protobuf field <code>double start = 1;</code>
     * @param float $var
     * @return $this
     */
    public function setStart($var)
    {
        GPBUtil::checkDouble($var);
        $this->start = $var;

        return $this;
    }

    /**
     * Generated from protobuf field <code>uint64 count = 2;</code>
     * @return int|string
     */
    public function getCount()
    {
        return $this->count;
    }

    /**
     * Generated from protobuf field <code>uint64 count = 2;</code>
     * @param int|string $var
     * @return $this
     */
    public function setCount($var)
    {
        GPBUtil::checkUint64($var);
        $this->count = $var;

        return $this;
    }

}