Class: Google::Apis::DoubleclickbidmanagerV2::ReportKey

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

Overview

Identifying information of a report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportKey

Returns a new instance of ReportKey.



447
448
449
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 447

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

Instance Attribute Details

#query_idFixnum

Output only. The unique ID of the query that generated the report. Corresponds to the JSON property queryId

Returns:

  • (Fixnum)


440
441
442
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 440

def query_id
  @query_id
end

#report_idFixnum

Output only. The unique ID of the report. Corresponds to the JSON property reportId

Returns:

  • (Fixnum)


445
446
447
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 445

def report_id
  @report_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



452
453
454
455
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 452

def update!(**args)
  @query_id = args[:query_id] if args.key?(:query_id)
  @report_id = args[:report_id] if args.key?(:report_id)
end