Class: Google::Apis::DoubleclickbidmanagerV2::ReportKey
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV2::ReportKey
- 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
Key used to identify a report.
Instance Attribute Summary collapse
-
#query_id ⇒ Fixnum
Output only.
-
#report_id ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportKey
constructor
A new instance of ReportKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportKey
Returns a new instance of ReportKey.
600 601 602 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 600 def initialize(**args) update!(**args) end |
Instance Attribute Details
#query_id ⇒ Fixnum
Output only. Query ID.
Corresponds to the JSON property queryId
593 594 595 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 593 def query_id @query_id end |
#report_id ⇒ Fixnum
Output only. Report ID.
Corresponds to the JSON property reportId
598 599 600 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 598 def report_id @report_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
605 606 607 608 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 605 def update!(**args) @query_id = args[:query_id] if args.key?(:query_id) @report_id = args[:report_id] if args.key?(:report_id) end |