<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/analytics/admin/v1beta/analytics_admin.proto

namespace Google\Analytics\Admin\V1beta;

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

/**
 * Request message for CreateFirebaseLink RPC
 *
 * Generated from protobuf message <code>google.analytics.admin.v1beta.CreateFirebaseLinkRequest</code>
 */
class CreateFirebaseLinkRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Required. Format: properties/{property_id}
     * Example: properties/1234
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     */
    private $parent = '';
    /**
     * Required. The Firebase link to create.
     *
     * Generated from protobuf field <code>.google.analytics.admin.v1beta.FirebaseLink firebase_link = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    private $firebase_link = null;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $parent
     *           Required. Format: properties/{property_id}
     *           Example: properties/1234
     *     @type \Google\Analytics\Admin\V1beta\FirebaseLink $firebase_link
     *           Required. The Firebase link to create.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Analytics\Admin\V1Beta\AnalyticsAdmin::initOnce();
        parent::__construct($data);
    }

    /**
     * Required. Format: properties/{property_id}
     * Example: properties/1234
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @return string
     */
    public function getParent()
    {
        return $this->parent;
    }

    /**
     * Required. Format: properties/{property_id}
     * Example: properties/1234
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @param string $var
     * @return $this
     */
    public function setParent($var)
    {
        GPBUtil::checkString($var, True);
        $this->parent = $var;

        return $this;
    }

    /**
     * Required. The Firebase link to create.
     *
     * Generated from protobuf field <code>.google.analytics.admin.v1beta.FirebaseLink firebase_link = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return \Google\Analytics\Admin\V1beta\FirebaseLink|null
     */
    public function getFirebaseLink()
    {
        return $this->firebase_link;
    }

    public function hasFirebaseLink()
    {
        return isset($this->firebase_link);
    }

    public function clearFirebaseLink()
    {
        unset($this->firebase_link);
    }

    /**
     * Required. The Firebase link to create.
     *
     * Generated from protobuf field <code>.google.analytics.admin.v1beta.FirebaseLink firebase_link = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param \Google\Analytics\Admin\V1beta\FirebaseLink $var
     * @return $this
     */
    public function setFirebaseLink($var)
    {
        GPBUtil::checkMessage($var, \Google\Analytics\Admin\V1beta\FirebaseLink::class);
        $this->firebase_link = $var;

        return $this;
    }

}

