<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/resourcemanager/v3/folders.proto

namespace Google\Cloud\ResourceManager\V3;

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

/**
 * The response message for searching folders.
 *
 * Generated from protobuf message <code>google.cloud.resourcemanager.v3.SearchFoldersResponse</code>
 */
class SearchFoldersResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * A possibly paginated folder search results.
     * the specified parent resource.
     *
     * Generated from protobuf field <code>repeated .google.cloud.resourcemanager.v3.Folder folders = 1;</code>
     */
    private $folders;
    /**
     * A pagination token returned from a previous call to `SearchFolders`
     * that indicates from where searching should continue.
     *
     * 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\ResourceManager\V3\Folder>|\Google\Protobuf\Internal\RepeatedField $folders
     *           A possibly paginated folder search results.
     *           the specified parent resource.
     *     @type string $next_page_token
     *           A pagination token returned from a previous call to `SearchFolders`
     *           that indicates from where searching should continue.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Resourcemanager\V3\Folders::initOnce();
        parent::__construct($data);
    }

    /**
     * A possibly paginated folder search results.
     * the specified parent resource.
     *
     * Generated from protobuf field <code>repeated .google.cloud.resourcemanager.v3.Folder folders = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getFolders()
    {
        return $this->folders;
    }

    /**
     * A possibly paginated folder search results.
     * the specified parent resource.
     *
     * Generated from protobuf field <code>repeated .google.cloud.resourcemanager.v3.Folder folders = 1;</code>
     * @param array<\Google\Cloud\ResourceManager\V3\Folder>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setFolders($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\ResourceManager\V3\Folder::class);
        $this->folders = $arr;

        return $this;
    }

    /**
     * A pagination token returned from a previous call to `SearchFolders`
     * that indicates from where searching should continue.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * A pagination token returned from a previous call to `SearchFolders`
     * that indicates from where searching should continue.
     *
     * 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;
    }

}

