├── .gitattributes ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── composer.json ├── metadata ├── V1Alpha │ ├── AnalyticsDataApi.php │ └── Data.php └── V1Beta │ ├── AnalyticsDataApi.php │ └── Data.php └── src ├── V1alpha ├── AudienceDimension.php ├── AudienceDimensionValue.php ├── AudienceList.php ├── AudienceList │ └── State.php ├── AudienceListMetadata.php ├── AudienceRow.php ├── BetweenFilter.php ├── Client │ └── AlphaAnalyticsDataClient.php ├── Cohort.php ├── CohortReportSettings.php ├── CohortSpec.php ├── CohortsRange.php ├── CohortsRange │ └── Granularity.php ├── CreateAudienceListRequest.php ├── CreateRecurringAudienceListRequest.php ├── CreateReportTaskRequest.php ├── DateRange.php ├── Dimension.php ├── DimensionExpression.php ├── DimensionExpression │ ├── CaseExpression.php │ └── ConcatenateExpression.php ├── DimensionHeader.php ├── DimensionValue.php ├── EmptyFilter.php ├── EventCriteriaScoping.php ├── EventExclusionDuration.php ├── EventSegment.php ├── EventSegmentConditionGroup.php ├── EventSegmentCriteria.php ├── EventSegmentExclusion.php ├── Filter.php ├── FilterExpression.php ├── FilterExpressionList.php ├── Funnel.php ├── FunnelBreakdown.php ├── FunnelEventFilter.php ├── FunnelFieldFilter.php ├── FunnelFilterExpression.php ├── FunnelFilterExpressionList.php ├── FunnelNextAction.php ├── FunnelParameterFilter.php ├── FunnelParameterFilterExpression.php ├── FunnelParameterFilterExpressionList.php ├── FunnelResponseMetadata.php ├── FunnelStep.php ├── FunnelSubReport.php ├── GetAudienceListRequest.php ├── GetPropertyQuotasSnapshotRequest.php ├── GetRecurringAudienceListRequest.php ├── GetReportTaskRequest.php ├── InListFilter.php ├── ListAudienceListsRequest.php ├── ListAudienceListsResponse.php ├── ListRecurringAudienceListsRequest.php ├── ListRecurringAudienceListsResponse.php ├── ListReportTasksRequest.php ├── ListReportTasksResponse.php ├── Metric.php ├── MetricAggregation.php ├── MetricHeader.php ├── MetricType.php ├── MetricValue.php ├── NumericFilter.php ├── NumericFilter │ └── Operation.php ├── NumericValue.php ├── OrderBy.php ├── OrderBy │ ├── DimensionOrderBy.php │ ├── DimensionOrderBy │ │ └── OrderType.php │ └── MetricOrderBy.php ├── PropertyQuota.php ├── PropertyQuotasSnapshot.php ├── QueryAudienceListRequest.php ├── QueryAudienceListResponse.php ├── QueryReportTaskRequest.php ├── QueryReportTaskResponse.php ├── QuotaStatus.php ├── RecurringAudienceList.php ├── ReportTask.php ├── ReportTask │ ├── ReportDefinition.php │ ├── ReportMetadata.php │ └── ReportMetadata │ │ └── State.php ├── ReportTaskMetadata.php ├── ResponseMetaData.php ├── ResponseMetaData │ ├── SchemaRestrictionResponse.php │ └── SchemaRestrictionResponse │ │ └── ActiveMetricRestriction.php ├── RestrictedMetricType.php ├── Row.php ├── RunFunnelReportRequest.php ├── RunFunnelReportRequest │ └── FunnelVisualizationType.php ├── RunFunnelReportResponse.php ├── SamplingLevel.php ├── SamplingMetadata.php ├── Segment.php ├── SegmentEventFilter.php ├── SegmentFilter.php ├── SegmentFilterExpression.php ├── SegmentFilterExpressionList.php ├── SegmentFilterScoping.php ├── SegmentParameterFilter.php ├── SegmentParameterFilterExpression.php ├── SegmentParameterFilterExpressionList.php ├── SegmentParameterFilterScoping.php ├── SessionCriteriaScoping.php ├── SessionExclusionDuration.php ├── SessionSegment.php ├── SessionSegmentConditionGroup.php ├── SessionSegmentCriteria.php ├── SessionSegmentExclusion.php ├── SheetExportAudienceListRequest.php ├── SheetExportAudienceListResponse.php ├── StringFilter.php ├── StringFilter │ └── MatchType.php ├── UserCriteriaScoping.php ├── UserExclusionDuration.php ├── UserSegment.php ├── UserSegmentConditionGroup.php ├── UserSegmentCriteria.php ├── UserSegmentExclusion.php ├── UserSegmentSequenceGroup.php ├── UserSequenceStep.php ├── WebhookNotification.php └── resources │ ├── alpha_analytics_data_client_config.json │ ├── alpha_analytics_data_descriptor_config.php │ └── alpha_analytics_data_rest_client_config.php └── V1beta ├── AudienceDimension.php ├── AudienceDimensionValue.php ├── AudienceExport.php ├── AudienceExport └── State.php ├── AudienceExportMetadata.php ├── AudienceRow.php ├── BatchRunPivotReportsRequest.php ├── BatchRunPivotReportsResponse.php ├── BatchRunReportsRequest.php ├── BatchRunReportsResponse.php ├── CheckCompatibilityRequest.php ├── CheckCompatibilityResponse.php ├── Client └── BetaAnalyticsDataClient.php ├── Cohort.php ├── CohortReportSettings.php ├── CohortSpec.php ├── CohortsRange.php ├── CohortsRange └── Granularity.php ├── Comparison.php ├── ComparisonMetadata.php ├── Compatibility.php ├── CreateAudienceExportRequest.php ├── DateRange.php ├── Dimension.php ├── DimensionCompatibility.php ├── DimensionExpression.php ├── DimensionExpression ├── CaseExpression.php └── ConcatenateExpression.php ├── DimensionHeader.php ├── DimensionMetadata.php ├── DimensionValue.php ├── Filter.php ├── Filter ├── BetweenFilter.php ├── EmptyFilter.php ├── InListFilter.php ├── NumericFilter.php ├── NumericFilter │ └── Operation.php ├── StringFilter.php └── StringFilter │ └── MatchType.php ├── FilterExpression.php ├── FilterExpressionList.php ├── GetAudienceExportRequest.php ├── GetMetadataRequest.php ├── ListAudienceExportsRequest.php ├── ListAudienceExportsResponse.php ├── Metadata.php ├── Metric.php ├── MetricAggregation.php ├── MetricCompatibility.php ├── MetricHeader.php ├── MetricMetadata.php ├── MetricMetadata └── BlockedReason.php ├── MetricType.php ├── MetricValue.php ├── MinuteRange.php ├── NumericValue.php ├── OrderBy.php ├── OrderBy ├── DimensionOrderBy.php ├── DimensionOrderBy │ └── OrderType.php ├── MetricOrderBy.php ├── PivotOrderBy.php └── PivotOrderBy │ └── PivotSelection.php ├── Pivot.php ├── PivotDimensionHeader.php ├── PivotHeader.php ├── PropertyQuota.php ├── QueryAudienceExportRequest.php ├── QueryAudienceExportResponse.php ├── QuotaStatus.php ├── ResponseMetaData.php ├── ResponseMetaData ├── SchemaRestrictionResponse.php └── SchemaRestrictionResponse │ └── ActiveMetricRestriction.php ├── RestrictedMetricType.php ├── Row.php ├── RunPivotReportRequest.php ├── RunPivotReportResponse.php ├── RunRealtimeReportRequest.php ├── RunRealtimeReportResponse.php ├── RunReportRequest.php ├── RunReportResponse.php ├── SamplingMetadata.php └── resources ├── beta_analytics_data_client_config.json ├── beta_analytics_data_descriptor_config.php └── beta_analytics_data_rest_client_config.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/.gitattributes -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.23.1 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/composer.json -------------------------------------------------------------------------------- /metadata/V1Alpha/AnalyticsDataApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/metadata/V1Alpha/AnalyticsDataApi.php -------------------------------------------------------------------------------- /metadata/V1Alpha/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/metadata/V1Alpha/Data.php -------------------------------------------------------------------------------- /metadata/V1Beta/AnalyticsDataApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/metadata/V1Beta/AnalyticsDataApi.php -------------------------------------------------------------------------------- /metadata/V1Beta/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/metadata/V1Beta/Data.php -------------------------------------------------------------------------------- /src/V1alpha/AudienceDimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/AudienceDimension.php -------------------------------------------------------------------------------- /src/V1alpha/AudienceDimensionValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/AudienceDimensionValue.php -------------------------------------------------------------------------------- /src/V1alpha/AudienceList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/AudienceList.php -------------------------------------------------------------------------------- /src/V1alpha/AudienceList/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/AudienceList/State.php -------------------------------------------------------------------------------- /src/V1alpha/AudienceListMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/AudienceListMetadata.php -------------------------------------------------------------------------------- /src/V1alpha/AudienceRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/AudienceRow.php -------------------------------------------------------------------------------- /src/V1alpha/BetweenFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/BetweenFilter.php -------------------------------------------------------------------------------- /src/V1alpha/Client/AlphaAnalyticsDataClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Client/AlphaAnalyticsDataClient.php -------------------------------------------------------------------------------- /src/V1alpha/Cohort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Cohort.php -------------------------------------------------------------------------------- /src/V1alpha/CohortReportSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/CohortReportSettings.php -------------------------------------------------------------------------------- /src/V1alpha/CohortSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/CohortSpec.php -------------------------------------------------------------------------------- /src/V1alpha/CohortsRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/CohortsRange.php -------------------------------------------------------------------------------- /src/V1alpha/CohortsRange/Granularity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/CohortsRange/Granularity.php -------------------------------------------------------------------------------- /src/V1alpha/CreateAudienceListRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/CreateAudienceListRequest.php -------------------------------------------------------------------------------- /src/V1alpha/CreateRecurringAudienceListRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/CreateRecurringAudienceListRequest.php -------------------------------------------------------------------------------- /src/V1alpha/CreateReportTaskRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/CreateReportTaskRequest.php -------------------------------------------------------------------------------- /src/V1alpha/DateRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/DateRange.php -------------------------------------------------------------------------------- /src/V1alpha/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Dimension.php -------------------------------------------------------------------------------- /src/V1alpha/DimensionExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/DimensionExpression.php -------------------------------------------------------------------------------- /src/V1alpha/DimensionExpression/CaseExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/DimensionExpression/CaseExpression.php -------------------------------------------------------------------------------- /src/V1alpha/DimensionExpression/ConcatenateExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/DimensionExpression/ConcatenateExpression.php -------------------------------------------------------------------------------- /src/V1alpha/DimensionHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/DimensionHeader.php -------------------------------------------------------------------------------- /src/V1alpha/DimensionValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/DimensionValue.php -------------------------------------------------------------------------------- /src/V1alpha/EmptyFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/EmptyFilter.php -------------------------------------------------------------------------------- /src/V1alpha/EventCriteriaScoping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/EventCriteriaScoping.php -------------------------------------------------------------------------------- /src/V1alpha/EventExclusionDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/EventExclusionDuration.php -------------------------------------------------------------------------------- /src/V1alpha/EventSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/EventSegment.php -------------------------------------------------------------------------------- /src/V1alpha/EventSegmentConditionGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/EventSegmentConditionGroup.php -------------------------------------------------------------------------------- /src/V1alpha/EventSegmentCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/EventSegmentCriteria.php -------------------------------------------------------------------------------- /src/V1alpha/EventSegmentExclusion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/EventSegmentExclusion.php -------------------------------------------------------------------------------- /src/V1alpha/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Filter.php -------------------------------------------------------------------------------- /src/V1alpha/FilterExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FilterExpression.php -------------------------------------------------------------------------------- /src/V1alpha/FilterExpressionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FilterExpressionList.php -------------------------------------------------------------------------------- /src/V1alpha/Funnel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Funnel.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelBreakdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelBreakdown.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelEventFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelEventFilter.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelFieldFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelFieldFilter.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelFilterExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelFilterExpression.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelFilterExpressionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelFilterExpressionList.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelNextAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelNextAction.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelParameterFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelParameterFilter.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelParameterFilterExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelParameterFilterExpression.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelParameterFilterExpressionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelParameterFilterExpressionList.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelResponseMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelResponseMetadata.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelStep.php -------------------------------------------------------------------------------- /src/V1alpha/FunnelSubReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/FunnelSubReport.php -------------------------------------------------------------------------------- /src/V1alpha/GetAudienceListRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/GetAudienceListRequest.php -------------------------------------------------------------------------------- /src/V1alpha/GetPropertyQuotasSnapshotRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/GetPropertyQuotasSnapshotRequest.php -------------------------------------------------------------------------------- /src/V1alpha/GetRecurringAudienceListRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/GetRecurringAudienceListRequest.php -------------------------------------------------------------------------------- /src/V1alpha/GetReportTaskRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/GetReportTaskRequest.php -------------------------------------------------------------------------------- /src/V1alpha/InListFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/InListFilter.php -------------------------------------------------------------------------------- /src/V1alpha/ListAudienceListsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ListAudienceListsRequest.php -------------------------------------------------------------------------------- /src/V1alpha/ListAudienceListsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ListAudienceListsResponse.php -------------------------------------------------------------------------------- /src/V1alpha/ListRecurringAudienceListsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ListRecurringAudienceListsRequest.php -------------------------------------------------------------------------------- /src/V1alpha/ListRecurringAudienceListsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ListRecurringAudienceListsResponse.php -------------------------------------------------------------------------------- /src/V1alpha/ListReportTasksRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ListReportTasksRequest.php -------------------------------------------------------------------------------- /src/V1alpha/ListReportTasksResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ListReportTasksResponse.php -------------------------------------------------------------------------------- /src/V1alpha/Metric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Metric.php -------------------------------------------------------------------------------- /src/V1alpha/MetricAggregation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/MetricAggregation.php -------------------------------------------------------------------------------- /src/V1alpha/MetricHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/MetricHeader.php -------------------------------------------------------------------------------- /src/V1alpha/MetricType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/MetricType.php -------------------------------------------------------------------------------- /src/V1alpha/MetricValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/MetricValue.php -------------------------------------------------------------------------------- /src/V1alpha/NumericFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/NumericFilter.php -------------------------------------------------------------------------------- /src/V1alpha/NumericFilter/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/NumericFilter/Operation.php -------------------------------------------------------------------------------- /src/V1alpha/NumericValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/NumericValue.php -------------------------------------------------------------------------------- /src/V1alpha/OrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/OrderBy.php -------------------------------------------------------------------------------- /src/V1alpha/OrderBy/DimensionOrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/OrderBy/DimensionOrderBy.php -------------------------------------------------------------------------------- /src/V1alpha/OrderBy/DimensionOrderBy/OrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/OrderBy/DimensionOrderBy/OrderType.php -------------------------------------------------------------------------------- /src/V1alpha/OrderBy/MetricOrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/OrderBy/MetricOrderBy.php -------------------------------------------------------------------------------- /src/V1alpha/PropertyQuota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/PropertyQuota.php -------------------------------------------------------------------------------- /src/V1alpha/PropertyQuotasSnapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/PropertyQuotasSnapshot.php -------------------------------------------------------------------------------- /src/V1alpha/QueryAudienceListRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/QueryAudienceListRequest.php -------------------------------------------------------------------------------- /src/V1alpha/QueryAudienceListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/QueryAudienceListResponse.php -------------------------------------------------------------------------------- /src/V1alpha/QueryReportTaskRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/QueryReportTaskRequest.php -------------------------------------------------------------------------------- /src/V1alpha/QueryReportTaskResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/QueryReportTaskResponse.php -------------------------------------------------------------------------------- /src/V1alpha/QuotaStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/QuotaStatus.php -------------------------------------------------------------------------------- /src/V1alpha/RecurringAudienceList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/RecurringAudienceList.php -------------------------------------------------------------------------------- /src/V1alpha/ReportTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ReportTask.php -------------------------------------------------------------------------------- /src/V1alpha/ReportTask/ReportDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ReportTask/ReportDefinition.php -------------------------------------------------------------------------------- /src/V1alpha/ReportTask/ReportMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ReportTask/ReportMetadata.php -------------------------------------------------------------------------------- /src/V1alpha/ReportTask/ReportMetadata/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ReportTask/ReportMetadata/State.php -------------------------------------------------------------------------------- /src/V1alpha/ReportTaskMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ReportTaskMetadata.php -------------------------------------------------------------------------------- /src/V1alpha/ResponseMetaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ResponseMetaData.php -------------------------------------------------------------------------------- /src/V1alpha/ResponseMetaData/SchemaRestrictionResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ResponseMetaData/SchemaRestrictionResponse.php -------------------------------------------------------------------------------- /src/V1alpha/ResponseMetaData/SchemaRestrictionResponse/ActiveMetricRestriction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/ResponseMetaData/SchemaRestrictionResponse/ActiveMetricRestriction.php -------------------------------------------------------------------------------- /src/V1alpha/RestrictedMetricType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/RestrictedMetricType.php -------------------------------------------------------------------------------- /src/V1alpha/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Row.php -------------------------------------------------------------------------------- /src/V1alpha/RunFunnelReportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/RunFunnelReportRequest.php -------------------------------------------------------------------------------- /src/V1alpha/RunFunnelReportRequest/FunnelVisualizationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/RunFunnelReportRequest/FunnelVisualizationType.php -------------------------------------------------------------------------------- /src/V1alpha/RunFunnelReportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/RunFunnelReportResponse.php -------------------------------------------------------------------------------- /src/V1alpha/SamplingLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SamplingLevel.php -------------------------------------------------------------------------------- /src/V1alpha/SamplingMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SamplingMetadata.php -------------------------------------------------------------------------------- /src/V1alpha/Segment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/Segment.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentEventFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentEventFilter.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentFilter.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentFilterExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentFilterExpression.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentFilterExpressionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentFilterExpressionList.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentFilterScoping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentFilterScoping.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentParameterFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentParameterFilter.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentParameterFilterExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentParameterFilterExpression.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentParameterFilterExpressionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentParameterFilterExpressionList.php -------------------------------------------------------------------------------- /src/V1alpha/SegmentParameterFilterScoping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SegmentParameterFilterScoping.php -------------------------------------------------------------------------------- /src/V1alpha/SessionCriteriaScoping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SessionCriteriaScoping.php -------------------------------------------------------------------------------- /src/V1alpha/SessionExclusionDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SessionExclusionDuration.php -------------------------------------------------------------------------------- /src/V1alpha/SessionSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SessionSegment.php -------------------------------------------------------------------------------- /src/V1alpha/SessionSegmentConditionGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SessionSegmentConditionGroup.php -------------------------------------------------------------------------------- /src/V1alpha/SessionSegmentCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SessionSegmentCriteria.php -------------------------------------------------------------------------------- /src/V1alpha/SessionSegmentExclusion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SessionSegmentExclusion.php -------------------------------------------------------------------------------- /src/V1alpha/SheetExportAudienceListRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SheetExportAudienceListRequest.php -------------------------------------------------------------------------------- /src/V1alpha/SheetExportAudienceListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/SheetExportAudienceListResponse.php -------------------------------------------------------------------------------- /src/V1alpha/StringFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/StringFilter.php -------------------------------------------------------------------------------- /src/V1alpha/StringFilter/MatchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/StringFilter/MatchType.php -------------------------------------------------------------------------------- /src/V1alpha/UserCriteriaScoping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserCriteriaScoping.php -------------------------------------------------------------------------------- /src/V1alpha/UserExclusionDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserExclusionDuration.php -------------------------------------------------------------------------------- /src/V1alpha/UserSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserSegment.php -------------------------------------------------------------------------------- /src/V1alpha/UserSegmentConditionGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserSegmentConditionGroup.php -------------------------------------------------------------------------------- /src/V1alpha/UserSegmentCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserSegmentCriteria.php -------------------------------------------------------------------------------- /src/V1alpha/UserSegmentExclusion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserSegmentExclusion.php -------------------------------------------------------------------------------- /src/V1alpha/UserSegmentSequenceGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserSegmentSequenceGroup.php -------------------------------------------------------------------------------- /src/V1alpha/UserSequenceStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/UserSequenceStep.php -------------------------------------------------------------------------------- /src/V1alpha/WebhookNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/WebhookNotification.php -------------------------------------------------------------------------------- /src/V1alpha/resources/alpha_analytics_data_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/resources/alpha_analytics_data_client_config.json -------------------------------------------------------------------------------- /src/V1alpha/resources/alpha_analytics_data_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/resources/alpha_analytics_data_descriptor_config.php -------------------------------------------------------------------------------- /src/V1alpha/resources/alpha_analytics_data_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1alpha/resources/alpha_analytics_data_rest_client_config.php -------------------------------------------------------------------------------- /src/V1beta/AudienceDimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/AudienceDimension.php -------------------------------------------------------------------------------- /src/V1beta/AudienceDimensionValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/AudienceDimensionValue.php -------------------------------------------------------------------------------- /src/V1beta/AudienceExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/AudienceExport.php -------------------------------------------------------------------------------- /src/V1beta/AudienceExport/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/AudienceExport/State.php -------------------------------------------------------------------------------- /src/V1beta/AudienceExportMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/AudienceExportMetadata.php -------------------------------------------------------------------------------- /src/V1beta/AudienceRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/AudienceRow.php -------------------------------------------------------------------------------- /src/V1beta/BatchRunPivotReportsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/BatchRunPivotReportsRequest.php -------------------------------------------------------------------------------- /src/V1beta/BatchRunPivotReportsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/BatchRunPivotReportsResponse.php -------------------------------------------------------------------------------- /src/V1beta/BatchRunReportsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/BatchRunReportsRequest.php -------------------------------------------------------------------------------- /src/V1beta/BatchRunReportsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/BatchRunReportsResponse.php -------------------------------------------------------------------------------- /src/V1beta/CheckCompatibilityRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/CheckCompatibilityRequest.php -------------------------------------------------------------------------------- /src/V1beta/CheckCompatibilityResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/CheckCompatibilityResponse.php -------------------------------------------------------------------------------- /src/V1beta/Client/BetaAnalyticsDataClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Client/BetaAnalyticsDataClient.php -------------------------------------------------------------------------------- /src/V1beta/Cohort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Cohort.php -------------------------------------------------------------------------------- /src/V1beta/CohortReportSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/CohortReportSettings.php -------------------------------------------------------------------------------- /src/V1beta/CohortSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/CohortSpec.php -------------------------------------------------------------------------------- /src/V1beta/CohortsRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/CohortsRange.php -------------------------------------------------------------------------------- /src/V1beta/CohortsRange/Granularity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/CohortsRange/Granularity.php -------------------------------------------------------------------------------- /src/V1beta/Comparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Comparison.php -------------------------------------------------------------------------------- /src/V1beta/ComparisonMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/ComparisonMetadata.php -------------------------------------------------------------------------------- /src/V1beta/Compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Compatibility.php -------------------------------------------------------------------------------- /src/V1beta/CreateAudienceExportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/CreateAudienceExportRequest.php -------------------------------------------------------------------------------- /src/V1beta/DateRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DateRange.php -------------------------------------------------------------------------------- /src/V1beta/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Dimension.php -------------------------------------------------------------------------------- /src/V1beta/DimensionCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DimensionCompatibility.php -------------------------------------------------------------------------------- /src/V1beta/DimensionExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DimensionExpression.php -------------------------------------------------------------------------------- /src/V1beta/DimensionExpression/CaseExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DimensionExpression/CaseExpression.php -------------------------------------------------------------------------------- /src/V1beta/DimensionExpression/ConcatenateExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DimensionExpression/ConcatenateExpression.php -------------------------------------------------------------------------------- /src/V1beta/DimensionHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DimensionHeader.php -------------------------------------------------------------------------------- /src/V1beta/DimensionMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DimensionMetadata.php -------------------------------------------------------------------------------- /src/V1beta/DimensionValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/DimensionValue.php -------------------------------------------------------------------------------- /src/V1beta/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter.php -------------------------------------------------------------------------------- /src/V1beta/Filter/BetweenFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter/BetweenFilter.php -------------------------------------------------------------------------------- /src/V1beta/Filter/EmptyFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter/EmptyFilter.php -------------------------------------------------------------------------------- /src/V1beta/Filter/InListFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter/InListFilter.php -------------------------------------------------------------------------------- /src/V1beta/Filter/NumericFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter/NumericFilter.php -------------------------------------------------------------------------------- /src/V1beta/Filter/NumericFilter/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter/NumericFilter/Operation.php -------------------------------------------------------------------------------- /src/V1beta/Filter/StringFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter/StringFilter.php -------------------------------------------------------------------------------- /src/V1beta/Filter/StringFilter/MatchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Filter/StringFilter/MatchType.php -------------------------------------------------------------------------------- /src/V1beta/FilterExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/FilterExpression.php -------------------------------------------------------------------------------- /src/V1beta/FilterExpressionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/FilterExpressionList.php -------------------------------------------------------------------------------- /src/V1beta/GetAudienceExportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/GetAudienceExportRequest.php -------------------------------------------------------------------------------- /src/V1beta/GetMetadataRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/GetMetadataRequest.php -------------------------------------------------------------------------------- /src/V1beta/ListAudienceExportsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/ListAudienceExportsRequest.php -------------------------------------------------------------------------------- /src/V1beta/ListAudienceExportsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/ListAudienceExportsResponse.php -------------------------------------------------------------------------------- /src/V1beta/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Metadata.php -------------------------------------------------------------------------------- /src/V1beta/Metric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Metric.php -------------------------------------------------------------------------------- /src/V1beta/MetricAggregation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MetricAggregation.php -------------------------------------------------------------------------------- /src/V1beta/MetricCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MetricCompatibility.php -------------------------------------------------------------------------------- /src/V1beta/MetricHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MetricHeader.php -------------------------------------------------------------------------------- /src/V1beta/MetricMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MetricMetadata.php -------------------------------------------------------------------------------- /src/V1beta/MetricMetadata/BlockedReason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MetricMetadata/BlockedReason.php -------------------------------------------------------------------------------- /src/V1beta/MetricType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MetricType.php -------------------------------------------------------------------------------- /src/V1beta/MetricValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MetricValue.php -------------------------------------------------------------------------------- /src/V1beta/MinuteRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/MinuteRange.php -------------------------------------------------------------------------------- /src/V1beta/NumericValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/NumericValue.php -------------------------------------------------------------------------------- /src/V1beta/OrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/OrderBy.php -------------------------------------------------------------------------------- /src/V1beta/OrderBy/DimensionOrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/OrderBy/DimensionOrderBy.php -------------------------------------------------------------------------------- /src/V1beta/OrderBy/DimensionOrderBy/OrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/OrderBy/DimensionOrderBy/OrderType.php -------------------------------------------------------------------------------- /src/V1beta/OrderBy/MetricOrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/OrderBy/MetricOrderBy.php -------------------------------------------------------------------------------- /src/V1beta/OrderBy/PivotOrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/OrderBy/PivotOrderBy.php -------------------------------------------------------------------------------- /src/V1beta/OrderBy/PivotOrderBy/PivotSelection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/OrderBy/PivotOrderBy/PivotSelection.php -------------------------------------------------------------------------------- /src/V1beta/Pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Pivot.php -------------------------------------------------------------------------------- /src/V1beta/PivotDimensionHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/PivotDimensionHeader.php -------------------------------------------------------------------------------- /src/V1beta/PivotHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/PivotHeader.php -------------------------------------------------------------------------------- /src/V1beta/PropertyQuota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/PropertyQuota.php -------------------------------------------------------------------------------- /src/V1beta/QueryAudienceExportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/QueryAudienceExportRequest.php -------------------------------------------------------------------------------- /src/V1beta/QueryAudienceExportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/QueryAudienceExportResponse.php -------------------------------------------------------------------------------- /src/V1beta/QuotaStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/QuotaStatus.php -------------------------------------------------------------------------------- /src/V1beta/ResponseMetaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/ResponseMetaData.php -------------------------------------------------------------------------------- /src/V1beta/ResponseMetaData/SchemaRestrictionResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/ResponseMetaData/SchemaRestrictionResponse.php -------------------------------------------------------------------------------- /src/V1beta/ResponseMetaData/SchemaRestrictionResponse/ActiveMetricRestriction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/ResponseMetaData/SchemaRestrictionResponse/ActiveMetricRestriction.php -------------------------------------------------------------------------------- /src/V1beta/RestrictedMetricType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/RestrictedMetricType.php -------------------------------------------------------------------------------- /src/V1beta/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/Row.php -------------------------------------------------------------------------------- /src/V1beta/RunPivotReportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/RunPivotReportRequest.php -------------------------------------------------------------------------------- /src/V1beta/RunPivotReportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/RunPivotReportResponse.php -------------------------------------------------------------------------------- /src/V1beta/RunRealtimeReportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/RunRealtimeReportRequest.php -------------------------------------------------------------------------------- /src/V1beta/RunRealtimeReportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/RunRealtimeReportResponse.php -------------------------------------------------------------------------------- /src/V1beta/RunReportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/RunReportRequest.php -------------------------------------------------------------------------------- /src/V1beta/RunReportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/RunReportResponse.php -------------------------------------------------------------------------------- /src/V1beta/SamplingMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/SamplingMetadata.php -------------------------------------------------------------------------------- /src/V1beta/resources/beta_analytics_data_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/resources/beta_analytics_data_client_config.json -------------------------------------------------------------------------------- /src/V1beta/resources/beta_analytics_data_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/resources/beta_analytics_data_descriptor_config.php -------------------------------------------------------------------------------- /src/V1beta/resources/beta_analytics_data_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/php-analytics-data/HEAD/src/V1beta/resources/beta_analytics_data_rest_client_config.php --------------------------------------------------------------------------------