<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/devtools/artifactregistry/v1beta2/version.proto

namespace Google\Cloud\ArtifactRegistry\V1beta2;

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

/**
 * The request to retrieve a version.
 *
 * Generated from protobuf message <code>google.devtools.artifactregistry.v1beta2.GetVersionRequest</code>
 */
class GetVersionRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * The name of the version to retrieve.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     */
    private $name = '';
    /**
     * The view that should be returned in the response.
     *
     * Generated from protobuf field <code>.google.devtools.artifactregistry.v1beta2.VersionView view = 2;</code>
     */
    private $view = 0;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           The name of the version to retrieve.
     *     @type int $view
     *           The view that should be returned in the response.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Devtools\Artifactregistry\V1Beta2\Version::initOnce();
        parent::__construct($data);
    }

    /**
     * The name of the version to retrieve.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * The name of the version to retrieve.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * The view that should be returned in the response.
     *
     * Generated from protobuf field <code>.google.devtools.artifactregistry.v1beta2.VersionView view = 2;</code>
     * @return int
     */
    public function getView()
    {
        return $this->view;
    }

    /**
     * The view that should be returned in the response.
     *
     * Generated from protobuf field <code>.google.devtools.artifactregistry.v1beta2.VersionView view = 2;</code>
     * @param int $var
     * @return $this
     */
    public function setView($var)
    {
        GPBUtil::checkEnum($var, \Google\Cloud\ArtifactRegistry\V1beta2\VersionView::class);
        $this->view = $var;

        return $this;
    }

}

