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

namespace Google\Cloud\Dataform\V1beta1;

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

/**
 * `PullGitCommits` request message.
 *
 * Generated from protobuf message <code>google.cloud.dataform.v1beta1.PullGitCommitsRequest</code>
 */
class PullGitCommitsRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Required. The workspace's name.
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     */
    private $name = '';
    /**
     * Optional. The name of the branch in the Git remote from which to pull commits.
     * If left unset, the repository's default branch name will be used.
     *
     * Generated from protobuf field <code>string remote_branch = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $remote_branch = '';
    /**
     * Required. The author of any merge commit which may be created as a result of merging
     * fetched Git commits into this workspace.
     *
     * Generated from protobuf field <code>.google.cloud.dataform.v1beta1.CommitAuthor author = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    private $author = null;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           Required. The workspace's name.
     *     @type string $remote_branch
     *           Optional. The name of the branch in the Git remote from which to pull commits.
     *           If left unset, the repository's default branch name will be used.
     *     @type \Google\Cloud\Dataform\V1beta1\CommitAuthor $author
     *           Required. The author of any merge commit which may be created as a result of merging
     *           fetched Git commits into this workspace.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Dataform\V1Beta1\Dataform::initOnce();
        parent::__construct($data);
    }

    /**
     * Required. The workspace's name.
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Required. The workspace's name.
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * Optional. The name of the branch in the Git remote from which to pull commits.
     * If left unset, the repository's default branch name will be used.
     *
     * Generated from protobuf field <code>string remote_branch = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return string
     */
    public function getRemoteBranch()
    {
        return $this->remote_branch;
    }

    /**
     * Optional. The name of the branch in the Git remote from which to pull commits.
     * If left unset, the repository's default branch name will be used.
     *
     * Generated from protobuf field <code>string remote_branch = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param string $var
     * @return $this
     */
    public function setRemoteBranch($var)
    {
        GPBUtil::checkString($var, True);
        $this->remote_branch = $var;

        return $this;
    }

    /**
     * Required. The author of any merge commit which may be created as a result of merging
     * fetched Git commits into this workspace.
     *
     * Generated from protobuf field <code>.google.cloud.dataform.v1beta1.CommitAuthor author = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return \Google\Cloud\Dataform\V1beta1\CommitAuthor|null
     */
    public function getAuthor()
    {
        return $this->author;
    }

    public function hasAuthor()
    {
        return isset($this->author);
    }

    public function clearAuthor()
    {
        unset($this->author);
    }

    /**
     * Required. The author of any merge commit which may be created as a result of merging
     * fetched Git commits into this workspace.
     *
     * Generated from protobuf field <code>.google.cloud.dataform.v1beta1.CommitAuthor author = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param \Google\Cloud\Dataform\V1beta1\CommitAuthor $var
     * @return $this
     */
    public function setAuthor($var)
    {
        GPBUtil::checkMessage($var, \Google\Cloud\Dataform\V1beta1\CommitAuthor::class);
        $this->author = $var;

        return $this;
    }

}

