googleanalytics
/
lib
/
analytics-admin
/
vendor
/
google
/
cloud
/
AnalyticsData
/
src
/
V1beta
/
DimensionHeader.php
googleanalytics
/
lib
/
analytics-admin
/
vendor
/
google
/
cloud
/
AnalyticsData
/
src
/
V1beta
Last commit date
CohortsRange
3 years ago
DimensionExpression
3 years ago
Filter
3 years ago
Gapic
3 years ago
MetricMetadata
3 years ago
OrderBy
3 years ago
ResponseMetaData
3 years ago
resources
3 years ago
BatchRunPivotReportsRequest.php
3 years ago
BatchRunPivotReportsResponse.php
3 years ago
BatchRunReportsRequest.php
3 years ago
BatchRunReportsResponse.php
3 years ago
BetaAnalyticsDataClient.php
3 years ago
BetaAnalyticsDataGrpcClient.php
3 years ago
CheckCompatibilityRequest.php
3 years ago
CheckCompatibilityResponse.php
3 years ago
Cohort.php
3 years ago
CohortReportSettings.php
3 years ago
CohortSpec.php
3 years ago
CohortsRange.php
3 years ago
Compatibility.php
3 years ago
DateRange.php
3 years ago
Dimension.php
3 years ago
DimensionCompatibility.php
3 years ago
DimensionExpression.php
3 years ago
DimensionHeader.php
3 years ago
DimensionMetadata.php
3 years ago
DimensionValue.php
3 years ago
Filter.php
3 years ago
FilterExpression.php
3 years ago
FilterExpressionList.php
3 years ago
GetMetadataRequest.php
3 years ago
Metadata.php
3 years ago
Metric.php
3 years ago
MetricAggregation.php
3 years ago
MetricCompatibility.php
3 years ago
MetricHeader.php
3 years ago
MetricMetadata.php
3 years ago
MetricType.php
3 years ago
MetricValue.php
3 years ago
MinuteRange.php
3 years ago
NumericValue.php
3 years ago
OrderBy.php
3 years ago
Pivot.php
3 years ago
PivotDimensionHeader.php
3 years ago
PivotHeader.php
3 years ago
PropertyQuota.php
3 years ago
QuotaStatus.php
3 years ago
ResponseMetaData.php
3 years ago
RestrictedMetricType.php
3 years ago
Row.php
3 years ago
RunPivotReportRequest.php
3 years ago
RunPivotReportResponse.php
3 years ago
RunRealtimeReportRequest.php
3 years ago
RunRealtimeReportResponse.php
3 years ago
RunReportRequest.php
3 years ago
RunReportResponse.php
3 years ago
gapic_metadata.json
3 years ago
DimensionHeader.php
71 lines
| 1 | <?php |
| 2 | # Generated by the protocol buffer compiler. DO NOT EDIT! |
| 3 | # source: google/analytics/data/v1beta/data.proto |
| 4 | |
| 5 | namespace Google\Analytics\Data\V1beta; |
| 6 | |
| 7 | use Google\Protobuf\Internal\GPBType; |
| 8 | use Google\Protobuf\Internal\RepeatedField; |
| 9 | use Google\Protobuf\Internal\GPBUtil; |
| 10 | |
| 11 | /** |
| 12 | * Describes a dimension column in the report. Dimensions requested in a report |
| 13 | * produce column entries within rows and DimensionHeaders. However, dimensions |
| 14 | * used exclusively within filters or expressions do not produce columns in a |
| 15 | * report; correspondingly, those dimensions do not produce headers. |
| 16 | * |
| 17 | * Generated from protobuf message <code>google.analytics.data.v1beta.DimensionHeader</code> |
| 18 | */ |
| 19 | class DimensionHeader extends \Google\Protobuf\Internal\Message |
| 20 | { |
| 21 | /** |
| 22 | * The dimension's name. |
| 23 | * |
| 24 | * Generated from protobuf field <code>string name = 1;</code> |
| 25 | */ |
| 26 | private $name = ''; |
| 27 | |
| 28 | /** |
| 29 | * Constructor. |
| 30 | * |
| 31 | * @param array $data { |
| 32 | * Optional. Data for populating the Message object. |
| 33 | * |
| 34 | * @type string $name |
| 35 | * The dimension's name. |
| 36 | * } |
| 37 | */ |
| 38 | public function __construct($data = NULL) { |
| 39 | \GPBMetadata\Google\Analytics\Data\V1Beta\Data::initOnce(); |
| 40 | parent::__construct($data); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * The dimension's name. |
| 45 | * |
| 46 | * Generated from protobuf field <code>string name = 1;</code> |
| 47 | * @return string |
| 48 | */ |
| 49 | public function getName() |
| 50 | { |
| 51 | return $this->name; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * The dimension's name. |
| 56 | * |
| 57 | * Generated from protobuf field <code>string name = 1;</code> |
| 58 | * @param string $var |
| 59 | * @return $this |
| 60 | */ |
| 61 | public function setName($var) |
| 62 | { |
| 63 | GPBUtil::checkString($var, True); |
| 64 | $this->name = $var; |
| 65 | |
| 66 | return $this; |
| 67 | } |
| 68 | |
| 69 | } |
| 70 | |
| 71 |