Class: Google::Apis::YoutubePartnerV1::OrderListResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::OrderListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_partner_v1/classes.rb,
generated/google/apis/youtube_partner_v1/representations.rb,
generated/google/apis/youtube_partner_v1/representations.rb
Instance Attribute Summary collapse
-
#items ⇒ Array<Google::Apis::YoutubePartnerV1::Order>
A list of orders that match the request criteria.
-
#kind ⇒ String
The type of the API response.
-
#next_page_token ⇒ String
The token that can be used as the value of the pageToken parameter to retrieve the next page in the result set.
-
#page_info ⇒ Google::Apis::YoutubePartnerV1::PageInfo
The pageInfo object encapsulates paging information for the result set.
-
#previous_page_token ⇒ String
The token that can be used as the value of the pageToken parameter to retrieve the previous page in the result set.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderListResponse
constructor
A new instance of OrderListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrderListResponse
Returns a new instance of OrderListResponse
2497 2498 2499 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2497 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::Order>
A list of orders that match the request criteria.
Corresponds to the JSON property items
2472 2473 2474 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2472 def items @items end |
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
orderList.
Corresponds to the JSON property kind
2478 2479 2480 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2478 def kind @kind end |
#next_page_token ⇒ String
The token that can be used as the value of the pageToken parameter to retrieve
the next page in the result set.
Corresponds to the JSON property nextPageToken
2484 2485 2486 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2484 def next_page_token @next_page_token end |
#page_info ⇒ Google::Apis::YoutubePartnerV1::PageInfo
The pageInfo object encapsulates paging information for the result set.
Corresponds to the JSON property pageInfo
2489 2490 2491 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2489 def page_info @page_info end |
#previous_page_token ⇒ String
The token that can be used as the value of the pageToken parameter to retrieve
the previous page in the result set.
Corresponds to the JSON property previousPageToken
2495 2496 2497 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2495 def previous_page_token @previous_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2502 2503 2504 2505 2506 2507 2508 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2502 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @page_info = args[:page_info] if args.key?(:page_info) @previous_page_token = args[:previous_page_token] if args.key?(:previous_page_token) end |