Class: Google::Apis::DoubleclicksearchV2::ReportRequest::TimeRange

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/doubleclicksearch_v2/classes.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TimeRange

Returns a new instance of TimeRange.



865
866
867
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 865

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#changed_attributes_since_timestampString

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

Returns:

  • (String)


847
848
849
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 847

def changed_attributes_since_timestamp
  @changed_attributes_since_timestamp
end

#changed_metrics_since_timestampString

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

Returns:

  • (String)


853
854
855
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 853

def changed_metrics_since_timestamp
  @changed_metrics_since_timestamp
end

#end_dateString

Inclusive date in YYYY-MM-DD format. Corresponds to the JSON property endDate

Returns:

  • (String)


858
859
860
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 858

def end_date
  @end_date
end

#start_dateString

Inclusive date in YYYY-MM-DD format. Corresponds to the JSON property startDate

Returns:

  • (String)


863
864
865
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 863

def start_date
  @start_date
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



870
871
872
873
874
875
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 870

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