Class: Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness
- Inherits:
-
Object
- Object
- Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/playdeveloperreporting_v1beta1/classes.rb,
lib/google/apis/playdeveloperreporting_v1beta1/representations.rb,
lib/google/apis/playdeveloperreporting_v1beta1/representations.rb
Overview
Information about data freshness for a single aggregation period.
Instance Attribute Summary collapse
-
#aggregation_period ⇒ String
Aggregation period for which data is available.
-
#latest_end_time ⇒ Google::Apis::PlaydeveloperreportingV1beta1::GoogleTypeDateTime
Represents civil time (or occasionally physical time).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness
constructor
A new instance of GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness
Returns a new instance of GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness.
344 345 346 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 344 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregation_period ⇒ String
Aggregation period for which data is available.
Corresponds to the JSON property aggregationPeriod
324 325 326 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 324 def aggregation_period @aggregation_period end |
#latest_end_time ⇒ Google::Apis::PlaydeveloperreportingV1beta1::GoogleTypeDateTime
Represents civil time (or occasionally physical time). This type can represent
a civil time in one of a few possible ways: * When utc_offset is set and
time_zone is unset: a civil time on a calendar day with a particular offset
from UTC. * When time_zone is set and utc_offset is unset: a civil time on a
calendar day in a particular time zone. * When neither time_zone nor
utc_offset is set: a civil time on a calendar day in local time. The date is
relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is
considered not to have a specific year. month and day must have valid, non-
zero values. This type may also be used to represent a physical time if all
the date and time fields are set and either case of the time_offset oneof is
set. Consider using Timestamp message for physical time instead. If your use
case also would like to store the user's timezone, that can be done in another
field. This type is more flexible than some applications may want. Make sure
to document and validate your application's limitations.
Corresponds to the JSON property latestEndTime
342 343 344 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 342 def latest_end_time @latest_end_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
349 350 351 352 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 349 def update!(**args) @aggregation_period = args[:aggregation_period] if args.key?(:aggregation_period) @latest_end_time = args[:latest_end_time] if args.key?(:latest_end_time) end |