googleanalytics
/
lib
/
analytics-admin
/
vendor
/
google
/
cloud
/
AnalyticsData
/
src
/
V1alpha
/
ResponseMetaData.php
googleanalytics
/
lib
/
analytics-admin
/
vendor
/
google
/
cloud
/
AnalyticsData
/
src
/
V1alpha
Last commit date
CohortsRange
3 years ago
DimensionExpression
3 years ago
Filter
3 years ago
Gapic
3 years ago
OrderBy
3 years ago
resources
3 years ago
AlphaAnalyticsDataClient.php
3 years ago
AlphaAnalyticsDataGrpcClient.php
3 years ago
BatchRunPivotReportsRequest.php
3 years ago
BatchRunPivotReportsResponse.php
3 years ago
BatchRunReportsRequest.php
3 years ago
BatchRunReportsResponse.php
3 years ago
Cohort.php
3 years ago
CohortReportSettings.php
3 years ago
CohortSpec.php
3 years ago
CohortsRange.php
3 years ago
DateRange.php
3 years ago
Dimension.php
3 years ago
DimensionExpression.php
3 years ago
DimensionHeader.php
3 years ago
DimensionMetadata.php
3 years ago
DimensionValue.php
3 years ago
Entity.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
MetricHeader.php
3 years ago
MetricMetadata.php
3 years ago
MetricType.php
3 years ago
MetricValue.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
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
ResponseMetaData.php
72 lines
| 1 | <?php |
| 2 | # Generated by the protocol buffer compiler. DO NOT EDIT! |
| 3 | # source: google/analytics/data/v1alpha/data.proto |
| 4 | |
| 5 | namespace Google\Analytics\Data\V1alpha; |
| 6 | |
| 7 | use Google\Protobuf\Internal\GPBType; |
| 8 | use Google\Protobuf\Internal\RepeatedField; |
| 9 | use Google\Protobuf\Internal\GPBUtil; |
| 10 | |
| 11 | /** |
| 12 | * Response's metadata carrying additional information about the report content. |
| 13 | * |
| 14 | * Generated from protobuf message <code>google.analytics.data.v1alpha.ResponseMetaData</code> |
| 15 | */ |
| 16 | class ResponseMetaData extends \Google\Protobuf\Internal\Message |
| 17 | { |
| 18 | /** |
| 19 | * If true, indicates some buckets of dimension combinations are rolled into |
| 20 | * "(other)" row. This can happen for high cardinality reports. |
| 21 | * |
| 22 | * Generated from protobuf field <code>bool data_loss_from_other_row = 3;</code> |
| 23 | */ |
| 24 | private $data_loss_from_other_row = false; |
| 25 | |
| 26 | /** |
| 27 | * Constructor. |
| 28 | * |
| 29 | * @param array $data { |
| 30 | * Optional. Data for populating the Message object. |
| 31 | * |
| 32 | * @type bool $data_loss_from_other_row |
| 33 | * If true, indicates some buckets of dimension combinations are rolled into |
| 34 | * "(other)" row. This can happen for high cardinality reports. |
| 35 | * } |
| 36 | */ |
| 37 | public function __construct($data = NULL) { |
| 38 | \GPBMetadata\Google\Analytics\Data\V1Alpha\Data::initOnce(); |
| 39 | parent::__construct($data); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * If true, indicates some buckets of dimension combinations are rolled into |
| 44 | * "(other)" row. This can happen for high cardinality reports. |
| 45 | * |
| 46 | * Generated from protobuf field <code>bool data_loss_from_other_row = 3;</code> |
| 47 | * @return bool |
| 48 | */ |
| 49 | public function getDataLossFromOtherRow() |
| 50 | { |
| 51 | return $this->data_loss_from_other_row; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * If true, indicates some buckets of dimension combinations are rolled into |
| 56 | * "(other)" row. This can happen for high cardinality reports. |
| 57 | * |
| 58 | * Generated from protobuf field <code>bool data_loss_from_other_row = 3;</code> |
| 59 | * @param bool $var |
| 60 | * @return $this |
| 61 | */ |
| 62 | public function setDataLossFromOtherRow($var) |
| 63 | { |
| 64 | GPBUtil::checkBool($var); |
| 65 | $this->data_loss_from_other_row = $var; |
| 66 | |
| 67 | return $this; |
| 68 | } |
| 69 | |
| 70 | } |
| 71 | |
| 72 |