Class: Google::Apis::DisplayvideoV3::ListLineItemsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::ListLineItemsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Instance Attribute Summary collapse
-
#line_items ⇒ Array<Google::Apis::DisplayvideoV3::LineItem>
The list of line items.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListLineItemsResponse
constructor
A new instance of ListLineItemsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListLineItemsResponse
Returns a new instance of ListLineItemsResponse.
9195 9196 9197 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9195 def initialize(**args) update!(**args) end |
Instance Attribute Details
#line_items ⇒ Array<Google::Apis::DisplayvideoV3::LineItem>
The list of line items. This list will be absent if empty.
Corresponds to the JSON property lineItems
9186 9187 9188 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9186 def line_items @line_items end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass this value in the
page_token field in the subsequent call to ListLineItems
method to retrieve
the next page of results.
Corresponds to the JSON property nextPageToken
9193 9194 9195 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9193 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9200 9201 9202 9203 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9200 def update!(**args) @line_items = args[:line_items] if args.key?(:line_items) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |