<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/bigtable/admin/v2/bigtable_table_admin.proto

namespace Google\Cloud\Bigtable\Admin\V2;

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

/**
 * Response message for
 * [google.bigtable.admin.v2.BigtableTableAdmin.GenerateConsistencyToken][google.bigtable.admin.v2.BigtableTableAdmin.GenerateConsistencyToken]
 *
 * Generated from protobuf message <code>google.bigtable.admin.v2.GenerateConsistencyTokenResponse</code>
 */
class GenerateConsistencyTokenResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The generated consistency token.
     *
     * Generated from protobuf field <code>string consistency_token = 1;</code>
     */
    private $consistency_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $consistency_token
     *           The generated consistency token.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Bigtable\Admin\V2\BigtableTableAdmin::initOnce();
        parent::__construct($data);
    }

    /**
     * The generated consistency token.
     *
     * Generated from protobuf field <code>string consistency_token = 1;</code>
     * @return string
     */
    public function getConsistencyToken()
    {
        return $this->consistency_token;
    }

    /**
     * The generated consistency token.
     *
     * Generated from protobuf field <code>string consistency_token = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setConsistencyToken($var)
    {
        GPBUtil::checkString($var, True);
        $this->consistency_token = $var;

        return $this;
    }

}

