<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/apigateway/v1/apigateway.proto

namespace Google\Cloud\ApiGateway\V1;

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

/**
 * Response message for ApiGatewayService.ListGateways
 *
 * Generated from protobuf message <code>google.cloud.apigateway.v1.ListGatewaysResponse</code>
 */
class ListGatewaysResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * Gateways.
     *
     * Generated from protobuf field <code>repeated .google.cloud.apigateway.v1.Gateway gateways = 1;</code>
     */
    private $gateways;
    /**
     * Next page token.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     */
    private $next_page_token = '';
    /**
     * Locations that could not be reached.
     *
     * Generated from protobuf field <code>repeated string unreachable_locations = 3;</code>
     */
    private $unreachable_locations;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\ApiGateway\V1\Gateway>|\Google\Protobuf\Internal\RepeatedField $gateways
     *           Gateways.
     *     @type string $next_page_token
     *           Next page token.
     *     @type array<string>|\Google\Protobuf\Internal\RepeatedField $unreachable_locations
     *           Locations that could not be reached.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Apigateway\V1\Apigateway::initOnce();
        parent::__construct($data);
    }

    /**
     * Gateways.
     *
     * Generated from protobuf field <code>repeated .google.cloud.apigateway.v1.Gateway gateways = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getGateways()
    {
        return $this->gateways;
    }

    /**
     * Gateways.
     *
     * Generated from protobuf field <code>repeated .google.cloud.apigateway.v1.Gateway gateways = 1;</code>
     * @param array<\Google\Cloud\ApiGateway\V1\Gateway>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setGateways($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\ApiGateway\V1\Gateway::class);
        $this->gateways = $arr;

        return $this;
    }

    /**
     * Next page token.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * Next page token.
     *
     * 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;
    }

    /**
     * Locations that could not be reached.
     *
     * Generated from protobuf field <code>repeated string unreachable_locations = 3;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getUnreachableLocations()
    {
        return $this->unreachable_locations;
    }

    /**
     * Locations that could not be reached.
     *
     * Generated from protobuf field <code>repeated string unreachable_locations = 3;</code>
     * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setUnreachableLocations($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->unreachable_locations = $arr;

        return $this;
    }

}

