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

namespace Google\Identity\AccessContextManager\V1;

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

/**
 * A response to `ListServicePerimetersRequest`.
 *
 * Generated from protobuf message <code>google.identity.accesscontextmanager.v1.ListServicePerimetersResponse</code>
 */
class ListServicePerimetersResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * List of the [Service Perimeter]
     * [google.identity.accesscontextmanager.v1.ServicePerimeter] instances.
     *
     * Generated from protobuf field <code>repeated .google.identity.accesscontextmanager.v1.ServicePerimeter service_perimeters = 1;</code>
     */
    private $service_perimeters;
    /**
     * The pagination token to retrieve the next page of results. If the value is
     * empty, no further results remain.
     *
     * 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\Identity\AccessContextManager\V1\ServicePerimeter>|\Google\Protobuf\Internal\RepeatedField $service_perimeters
     *           List of the [Service Perimeter]
     *           [google.identity.accesscontextmanager.v1.ServicePerimeter] instances.
     *     @type string $next_page_token
     *           The pagination token to retrieve the next page of results. If the value is
     *           empty, no further results remain.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Identity\Accesscontextmanager\V1\AccessContextManager::initOnce();
        parent::__construct($data);
    }

    /**
     * List of the [Service Perimeter]
     * [google.identity.accesscontextmanager.v1.ServicePerimeter] instances.
     *
     * Generated from protobuf field <code>repeated .google.identity.accesscontextmanager.v1.ServicePerimeter service_perimeters = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getServicePerimeters()
    {
        return $this->service_perimeters;
    }

    /**
     * List of the [Service Perimeter]
     * [google.identity.accesscontextmanager.v1.ServicePerimeter] instances.
     *
     * Generated from protobuf field <code>repeated .google.identity.accesscontextmanager.v1.ServicePerimeter service_perimeters = 1;</code>
     * @param array<\Google\Identity\AccessContextManager\V1\ServicePerimeter>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setServicePerimeters($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Identity\AccessContextManager\V1\ServicePerimeter::class);
        $this->service_perimeters = $arr;

        return $this;
    }

    /**
     * The pagination token to retrieve the next page of results. If the value is
     * empty, no further results remain.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * The pagination token to retrieve the next page of results. If the value is
     * empty, no further results remain.
     *
     * 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;
    }

}

