Class: Google::Apis::DoubleclickbidmanagerV1_1::ListReportsResponse

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

List reports response.

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#kindString

Identifies what kind of resource this is. Value: the fixed string " doubleclickbidmanager#listReportsResponse". Corresponds to the JSON property kind

Returns:

  • (String)


315
316
317
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 315

def kind
  @kind
end

#next_page_tokenString

Next page's pagination token if one exists. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


320
321
322
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 320

def next_page_token
  @next_page_token
end

#reportsArray<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