Class: Google::Apis::YoutubePartnerV1::ReferenceConflictListResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ReferenceConflictListResponse
- 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::ReferenceConflict>
A list of reference conflicts 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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReferenceConflictListResponse
constructor
A new instance of ReferenceConflictListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReferenceConflictListResponse
Returns a new instance of ReferenceConflictListResponse.
3522 3523 3524 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3522 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::ReferenceConflict>
A list of reference conflicts that match the request criteria.
Corresponds to the JSON property items
3503 3504 3505 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3503 def items @items end |
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
referenceConflictList.
Corresponds to the JSON property kind
3509 3510 3511 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3509 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
3515 3516 3517 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3515 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
3520 3521 3522 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3520 def page_info @page_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3527 3528 3529 3530 3531 3532 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3527 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) end |