class Google::Apis::DoubleclicksearchV2::ReportRequest::TimeRange

If metrics are requested in a report, this argument will be used to restrict the metrics to a specific time range.

Attributes

changed_attributes_since_timestamp[RW]

Inclusive UTC timestamp in RFC format, e.g., `2013-07-16T10:16:23.555Z`. See additional references on how changed attribute reports work. Corresponds to the JSON property `changedAttributesSinceTimestamp` @return [String]

changed_metrics_since_timestamp[RW]

Inclusive UTC timestamp in RFC format, e.g., `2013-07-16T10:16:23.555Z`. See additional references on how changed metrics reports work. Corresponds to the JSON property `changedMetricsSinceTimestamp` @return [String]

end_date[RW]

Inclusive date in YYYY-MM-DD format. Corresponds to the JSON property `endDate` @return [String]

start_date[RW]

Inclusive date in YYYY-MM-DD format. Corresponds to the JSON property `startDate` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/doubleclicksearch_v2/classes.rb, line 851
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/doubleclicksearch_v2/classes.rb, line 856
def update!(**args)
  @changed_attributes_since_timestamp = args[:changed_attributes_since_timestamp] if args.key?(:changed_attributes_since_timestamp)
  @changed_metrics_since_timestamp = args[:changed_metrics_since_timestamp] if args.key?(:changed_metrics_since_timestamp)
  @end_date = args[:end_date] if args.key?(:end_date)
  @start_date = args[:start_date] if args.key?(:start_date)
end