Class: Google::Apis::DoubleclickbidmanagerV1_1::ListReportsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1_1::ListReportsResponse
- 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
List reports response.
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Next page's pagination token if one exists.
-
#reports ⇒ Array<Google::Apis::DoubleclickbidmanagerV1_1::Report>
Retrieved reports.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListReportsResponse
constructor
A new instance of ListReportsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListReportsResponse
Returns a new instance of ListReportsResponse.
327 328 329 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 327 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
doubleclickbidmanager#listReportsResponse".
Corresponds to the JSON property kind
315 316 317 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 315 def kind @kind end |
#next_page_token ⇒ String
Next page's pagination token if one exists.
Corresponds to the JSON property nextPageToken
320 321 322 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 320 def next_page_token @next_page_token end |
#reports ⇒ Array<Google::Apis::DoubleclickbidmanagerV1_1::Report>
Retrieved reports.
Corresponds to the JSON property reports
325 326 327 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 325 def reports @reports end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
332 333 334 335 336 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 332 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @reports = args[:reports] if args.key?(:reports) end |