<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/analytics/admin/v1beta/analytics_admin.proto

namespace Google\Analytics\Admin\V1beta;

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

/**
 * Response message for ListDataStreams RPC.
 *
 * Generated from protobuf message <code>google.analytics.admin.v1beta.ListDataStreamsResponse</code>
 */
class ListDataStreamsResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * List of DataStreams.
     *
     * Generated from protobuf field <code>repeated .google.analytics.admin.v1beta.DataStream data_streams = 1;</code>
     */
    private $data_streams;
    /**
     * 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\Analytics\Admin\V1beta\DataStream>|\Google\Protobuf\Internal\RepeatedField $data_streams
     *           List of DataStreams.
     *     @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\Analytics\Admin\V1Beta\AnalyticsAdmin::initOnce();
        parent::__construct($data);
    }

    /**
     * List of DataStreams.
     *
     * Generated from protobuf field <code>repeated .google.analytics.admin.v1beta.DataStream data_streams = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getDataStreams()
    {
        return $this->data_streams;
    }

    /**
     * List of DataStreams.
     *
     * Generated from protobuf field <code>repeated .google.analytics.admin.v1beta.DataStream data_streams = 1;</code>
     * @param array<\Google\Analytics\Admin\V1beta\DataStream>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setDataStreams($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Analytics\Admin\V1beta\DataStream::class);
        $this->data_streams = $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;
    }

}

