HEX
Server: nginx/1.26.1
System: Linux main-vm 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User: root (0)
PHP: 8.2.19
Disabled: NONE
Upload Files
File: /var/www/rocioprime/wp-content/plugins/siteseo/vendor/google/analytics-data/src/V1alpha/Entity.php
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/analytics/data/v1alpha/data.proto

namespace Google\Analytics\Data\V1alpha;

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

/**
 * The unique identifier of the property whose events are tracked.
 *
 * Generated from protobuf message <code>google.analytics.data.v1alpha.Entity</code>
 */
class Entity extends \Google\Protobuf\Internal\Message
{
    /**
     * A Google Analytics GA4 property id. To learn more, see [where to find your
     * Property
     * ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
     *
     * Generated from protobuf field <code>string property_id = 1;</code>
     */
    private $property_id = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $property_id
     *           A Google Analytics GA4 property id. To learn more, see [where to find your
     *           Property
     *           ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Analytics\Data\V1Alpha\Data::initOnce();
        parent::__construct($data);
    }

    /**
     * A Google Analytics GA4 property id. To learn more, see [where to find your
     * Property
     * ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
     *
     * Generated from protobuf field <code>string property_id = 1;</code>
     * @return string
     */
    public function getPropertyId()
    {
        return $this->property_id;
    }

    /**
     * A Google Analytics GA4 property id. To learn more, see [where to find your
     * Property
     * ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
     *
     * Generated from protobuf field <code>string property_id = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setPropertyId($var)
    {
        GPBUtil::checkString($var, True);
        $this->property_id = $var;

        return $this;
    }

}