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

namespace Google\Cloud\DataCatalog\Lineage\V1;

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

/**
 * Response message for
 * [ListProcesses][google.cloud.datacatalog.lineage.v1.ListProcesses].
 *
 * Generated from protobuf message <code>google.cloud.datacatalog.lineage.v1.ListProcessesResponse</code>
 */
class ListProcessesResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The processes from the specified project and location.
     *
     * Generated from protobuf field <code>repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;</code>
     */
    private $processes;
    /**
     * The token to specify as `page_token` in the next call to get the next page.
     * If this field is omitted, there are no subsequent pages.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     */
    protected $next_page_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\DataCatalog\Lineage\V1\Process>|\Google\Protobuf\Internal\RepeatedField $processes
     *           The processes from the specified project and location.
     *     @type string $next_page_token
     *           The token to specify as `page_token` in the next call to get the next page.
     *           If this field is omitted, there are no subsequent pages.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Datacatalog\Lineage\V1\Lineage::initOnce();
        parent::__construct($data);
    }

    /**
     * The processes from the specified project and location.
     *
     * Generated from protobuf field <code>repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getProcesses()
    {
        return $this->processes;
    }

    /**
     * The processes from the specified project and location.
     *
     * Generated from protobuf field <code>repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;</code>
     * @param array<\Google\Cloud\DataCatalog\Lineage\V1\Process>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setProcesses($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\DataCatalog\Lineage\V1\Process::class);
        $this->processes = $arr;

        return $this;
    }

    /**
     * The token to specify as `page_token` in the next call to get 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;
    }

    /**
     * The token to specify as `page_token` in the next call to get 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;
    }

}

