PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 3.2.3
ShareThis Dashboard for Google Analytics v3.2.3
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / lib / analytics-admin / vendor / google / cloud / AnalyticsData / src / V1beta / CheckCompatibilityResponse.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
CheckCompatibilityResponse.php
102 lines
1 <?php
2 # Generated by the protocol buffer compiler. DO NOT EDIT!
3 # source: google/analytics/data/v1beta/analytics_data_api.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 * The compatibility response with the compatibility of each dimension & metric.
13 *
14 * Generated from protobuf message <code>google.analytics.data.v1beta.CheckCompatibilityResponse</code>
15 */
16 class CheckCompatibilityResponse extends \Google\Protobuf\Internal\Message
17 {
18 /**
19 * The compatibility of each dimension.
20 *
21 * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.DimensionCompatibility dimension_compatibilities = 1;</code>
22 */
23 private $dimension_compatibilities;
24 /**
25 * The compatibility of each metric.
26 *
27 * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.MetricCompatibility metric_compatibilities = 2;</code>
28 */
29 private $metric_compatibilities;
30
31 /**
32 * Constructor.
33 *
34 * @param array $data {
35 * Optional. Data for populating the Message object.
36 *
37 * @type \Google\Analytics\Data\V1beta\DimensionCompatibility[]|\Google\Protobuf\Internal\RepeatedField $dimension_compatibilities
38 * The compatibility of each dimension.
39 * @type \Google\Analytics\Data\V1beta\MetricCompatibility[]|\Google\Protobuf\Internal\RepeatedField $metric_compatibilities
40 * The compatibility of each metric.
41 * }
42 */
43 public function __construct($data = NULL) {
44 \GPBMetadata\Google\Analytics\Data\V1Beta\AnalyticsDataApi::initOnce();
45 parent::__construct($data);
46 }
47
48 /**
49 * The compatibility of each dimension.
50 *
51 * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.DimensionCompatibility dimension_compatibilities = 1;</code>
52 * @return \Google\Protobuf\Internal\RepeatedField
53 */
54 public function getDimensionCompatibilities()
55 {
56 return $this->dimension_compatibilities;
57 }
58
59 /**
60 * The compatibility of each dimension.
61 *
62 * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.DimensionCompatibility dimension_compatibilities = 1;</code>
63 * @param \Google\Analytics\Data\V1beta\DimensionCompatibility[]|\Google\Protobuf\Internal\RepeatedField $var
64 * @return $this
65 */
66 public function setDimensionCompatibilities($var)
67 {
68 $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Analytics\Data\V1beta\DimensionCompatibility::class);
69 $this->dimension_compatibilities = $arr;
70
71 return $this;
72 }
73
74 /**
75 * The compatibility of each metric.
76 *
77 * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.MetricCompatibility metric_compatibilities = 2;</code>
78 * @return \Google\Protobuf\Internal\RepeatedField
79 */
80 public function getMetricCompatibilities()
81 {
82 return $this->metric_compatibilities;
83 }
84
85 /**
86 * The compatibility of each metric.
87 *
88 * Generated from protobuf field <code>repeated .google.analytics.data.v1beta.MetricCompatibility metric_compatibilities = 2;</code>
89 * @param \Google\Analytics\Data\V1beta\MetricCompatibility[]|\Google\Protobuf\Internal\RepeatedField $var
90 * @return $this
91 */
92 public function setMetricCompatibilities($var)
93 {
94 $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Analytics\Data\V1beta\MetricCompatibility::class);
95 $this->metric_compatibilities = $arr;
96
97 return $this;
98 }
99
100 }
101
102