Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
google
/
analytics-data
/
src
/
V1beta
/
Editing: PivotDimensionHeader.php
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/analytics/data/v1beta/data.proto namespace Google\Analytics\Data\V1beta; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Summarizes dimension values from a row for this pivot. * * Generated from protobuf message <code>google.analytics.data.v1beta.PivotDimensionHeader</code> */ class PivotDimensionHeader extends \Google\Protobuf\Internal\Message { /** * Values of multiple dimensions in a pivot. * * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.DimensionValue dimension_values = 1;</code> */ private $dimension_values; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type array<\Google\Analytics\Data\V1beta\DimensionValue>|\Google\Protobuf\Internal\RepeatedField $dimension_values * Values of multiple dimensions in a pivot. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Analytics\Data\V1Beta\Data::initOnce(); parent::__construct($data); } /** * Values of multiple dimensions in a pivot. * * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.DimensionValue dimension_values = 1;</code> * @return \Google\Protobuf\Internal\RepeatedField */ public function getDimensionValues() { return $this->dimension_values; } /** * Values of multiple dimensions in a pivot. * * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.DimensionValue dimension_values = 1;</code> * @param array<\Google\Analytics\Data\V1beta\DimensionValue>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setDimensionValues($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Analytics\Data\V1beta\DimensionValue::class); $this->dimension_values = $arr; return $this; } }
Save
Cancel