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

namespace Google\Cloud\Dataproc\V1;

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

/**
 * A list of batch workloads.
 *
 * Generated from protobuf message <code>google.cloud.dataproc.v1.ListBatchesResponse</code>
 */
class ListBatchesResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The batches from the specified collection.
     *
     * Generated from protobuf field <code>repeated .google.cloud.dataproc.v1.Batch batches = 1;</code>
     */
    private $batches;
    /**
     * A token, which can be sent as `page_token` to retrieve the next page.
     * If this field is omitted, there are no subsequent pages.
     *
     * 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\Dataproc\V1\Batch>|\Google\Protobuf\Internal\RepeatedField $batches
     *           The batches from the specified collection.
     *     @type string $next_page_token
     *           A token, which can be sent as `page_token` to retrieve the next page.
     *           If this field is omitted, there are no subsequent pages.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Dataproc\V1\Batches::initOnce();
        parent::__construct($data);
    }

    /**
     * The batches from the specified collection.
     *
     * Generated from protobuf field <code>repeated .google.cloud.dataproc.v1.Batch batches = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getBatches()
    {
        return $this->batches;
    }

    /**
     * The batches from the specified collection.
     *
     * Generated from protobuf field <code>repeated .google.cloud.dataproc.v1.Batch batches = 1;</code>
     * @param array<\Google\Cloud\Dataproc\V1\Batch>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setBatches($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dataproc\V1\Batch::class);
        $this->batches = $arr;

        return $this;
    }

    /**
     * A token, which can be sent as `page_token` to retrieve the next page.
     * If this field is omitted, there are no subsequent pages.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * A token, which can be sent as `page_token` to retrieve the next page.
     * If this field is omitted, there are no subsequent pages.
     *
     * 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;
    }

}

