Class: Google::Apis::DoubleclickbidmanagerV1_1::ReportKey

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

Overview

Key used to identify a report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReportKey

Returns a new instance of ReportKey.



605
606
607
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 605

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

Instance Attribute Details

#query_idFixnum

Query ID. Corresponds to the JSON property queryId

Returns:

  • (Fixnum)


598
599
600
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 598

def query_id
  @query_id
end

#report_idFixnum

Report ID. Corresponds to the JSON property reportId

Returns:

  • (Fixnum)


603
604
605
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 603

def report_id
  @report_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



610
611
612
613
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 610

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