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

namespace Google\Cloud\AIPlatform\V1;

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

/**
 * Response message for
 * [ModelService.ListModelVersions][google.cloud.aiplatform.v1.ModelService.ListModelVersions]
 *
 * Generated from protobuf message <code>google.cloud.aiplatform.v1.ListModelVersionsResponse</code>
 */
class ListModelVersionsResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * List of Model versions in the requested page.
     * In the returned Model name field, version ID instead of regvision tag will
     * be included.
     *
     * Generated from protobuf field <code>repeated .google.cloud.aiplatform.v1.Model models = 1;</code>
     */
    private $models;
    /**
     * A token to retrieve the next page of results.
     * Pass to
     * [ListModelVersionsRequest.page_token][google.cloud.aiplatform.v1.ListModelVersionsRequest.page_token]
     * to obtain that page.
     *
     * 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\AIPlatform\V1\Model>|\Google\Protobuf\Internal\RepeatedField $models
     *           List of Model versions in the requested page.
     *           In the returned Model name field, version ID instead of regvision tag will
     *           be included.
     *     @type string $next_page_token
     *           A token to retrieve the next page of results.
     *           Pass to
     *           [ListModelVersionsRequest.page_token][google.cloud.aiplatform.v1.ListModelVersionsRequest.page_token]
     *           to obtain that page.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Aiplatform\V1\ModelService::initOnce();
        parent::__construct($data);
    }

    /**
     * List of Model versions in the requested page.
     * In the returned Model name field, version ID instead of regvision tag will
     * be included.
     *
     * Generated from protobuf field <code>repeated .google.cloud.aiplatform.v1.Model models = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getModels()
    {
        return $this->models;
    }

    /**
     * List of Model versions in the requested page.
     * In the returned Model name field, version ID instead of regvision tag will
     * be included.
     *
     * Generated from protobuf field <code>repeated .google.cloud.aiplatform.v1.Model models = 1;</code>
     * @param array<\Google\Cloud\AIPlatform\V1\Model>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setModels($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\AIPlatform\V1\Model::class);
        $this->models = $arr;

        return $this;
    }

    /**
     * A token to retrieve the next page of results.
     * Pass to
     * [ListModelVersionsRequest.page_token][google.cloud.aiplatform.v1.ListModelVersionsRequest.page_token]
     * to obtain that page.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * A token to retrieve the next page of results.
     * Pass to
     * [ListModelVersionsRequest.page_token][google.cloud.aiplatform.v1.ListModelVersionsRequest.page_token]
     * to obtain that page.
     *
     * 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;
    }

}

