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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/doubleclickbidmanager_v1_1/classes.rb,
lib/google/apis/doubleclickbidmanager_v1_1/representations.rb,
lib/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.



176
177
178
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 176

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)


164
165
166
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 164

def kind
  @kind
end

#next_page_tokenString

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

Returns:

  • (String)


169
170
171
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 169

def next_page_token
  @next_page_token
end

#reportsArray<Google::Apis::DoubleclickbidmanagerV1_1::Report>

Retrieved reports. Corresponds to the JSON property reports



174
175
176
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 174

def reports
  @reports
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



181
182
183
184
185
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 181

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