aggregationPeriod = $aggregationPeriod; } /** * @return self::AGGREGATION_PERIOD_* */ public function getAggregationPeriod() { return $this->aggregationPeriod; } /** * Latest end time for which data is available, for the aggregation period. * The time is specified in the metric set's default timezone. *Note:* time * ranges in TimelineSpec are represented as `start_time, end_time)`. For * example, if the latest available timeline data point for a `DAILY` * aggregation period is `2021-06-23 00:00:00 America/Los_Angeles`, the value * of this field would be `2021-06-24 00:00:00 America/Los_Angeles` so it can * be easily reused in [TimelineSpec.end_time. * * @param GoogleTypeDateTime $latestEndTime */ public function setLatestEndTime(GoogleTypeDateTime $latestEndTime) { $this->latestEndTime = $latestEndTime; } /** * @return GoogleTypeDateTime */ public function getLatestEndTime() { return $this->latestEndTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness::class, 'Google_Service_Playdeveloperreporting_GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness');