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

namespace Google\Cloud\Dataplex\V1;

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

/**
 * List metadata partitions response.
 *
 * Generated from protobuf message <code>google.cloud.dataplex.v1.ListPartitionsResponse</code>
 */
class ListPartitionsResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * Partitions under the specified parent entity.
     *
     * Generated from protobuf field <code>repeated .google.cloud.dataplex.v1.Partition partitions = 1;</code>
     */
    private $partitions;
    /**
     * Token to retrieve the next page of results, or empty if there are no
     * remaining results in the list.
     *
     * 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\Dataplex\V1\Partition>|\Google\Protobuf\Internal\RepeatedField $partitions
     *           Partitions under the specified parent entity.
     *     @type string $next_page_token
     *           Token to retrieve the next page of results, or empty if there are no
     *           remaining results in the list.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Dataplex\V1\Metadata::initOnce();
        parent::__construct($data);
    }

    /**
     * Partitions under the specified parent entity.
     *
     * Generated from protobuf field <code>repeated .google.cloud.dataplex.v1.Partition partitions = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getPartitions()
    {
        return $this->partitions;
    }

    /**
     * Partitions under the specified parent entity.
     *
     * Generated from protobuf field <code>repeated .google.cloud.dataplex.v1.Partition partitions = 1;</code>
     * @param array<\Google\Cloud\Dataplex\V1\Partition>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setPartitions($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dataplex\V1\Partition::class);
        $this->partitions = $arr;

        return $this;
    }

    /**
     * Token to retrieve the next page of results, or empty if there are no
     * remaining results in the list.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * Token to retrieve the next page of results, or empty if there are no
     * remaining results in the list.
     *
     * 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;
    }

}

