<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/spanner/admin/instance/v1/spanner_instance_admin.proto

namespace Google\Cloud\Spanner\Admin\Instance\V1;

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

/**
 * The response for
 * [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances].
 *
 * Generated from protobuf message <code>google.spanner.admin.instance.v1.ListInstancesResponse</code>
 */
class ListInstancesResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The list of requested instances.
     *
     * Generated from protobuf field <code>repeated .google.spanner.admin.instance.v1.Instance instances = 1;</code>
     */
    private $instances;
    /**
     * `next_page_token` can be sent in a subsequent
     * [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances]
     * call to fetch more of the matching instances.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     */
    private $next_page_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\Spanner\Admin\Instance\V1\Instance>|\Google\Protobuf\Internal\RepeatedField $instances
     *           The list of requested instances.
     *     @type string $next_page_token
     *           `next_page_token` can be sent in a subsequent
     *           [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances]
     *           call to fetch more of the matching instances.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Spanner\Admin\Instance\V1\SpannerInstanceAdmin::initOnce();
        parent::__construct($data);
    }

    /**
     * The list of requested instances.
     *
     * Generated from protobuf field <code>repeated .google.spanner.admin.instance.v1.Instance instances = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getInstances()
    {
        return $this->instances;
    }

    /**
     * The list of requested instances.
     *
     * Generated from protobuf field <code>repeated .google.spanner.admin.instance.v1.Instance instances = 1;</code>
     * @param array<\Google\Cloud\Spanner\Admin\Instance\V1\Instance>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setInstances($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Spanner\Admin\Instance\V1\Instance::class);
        $this->instances = $arr;

        return $this;
    }

    /**
     * `next_page_token` can be sent in a subsequent
     * [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances]
     * call to fetch more of the matching instances.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * `next_page_token` can be sent in a subsequent
     * [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances]
     * call to fetch more of the matching instances.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @param string $var
     * @return $this
     */
    public function setNextPageToken($var)
    {
        GPBUtil::checkString($var, True);
        $this->next_page_token = $var;

        return $this;
    }

}

