Class: Google::Apis::YoutubePartnerV1::ClaimListResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ClaimListResponse
- 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::Claim>
A list of claims 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) ⇒ ClaimListResponse
constructor
A new instance of ClaimListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClaimListResponse
Returns a new instance of ClaimListResponse.
992 993 994 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 992 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::Claim>
A list of claims that match the request criteria.
Corresponds to the JSON property items
967 968 969 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 967 def items @items end |
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
claimList.
Corresponds to the JSON property kind
973 974 975 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 973 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
979 980 981 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 979 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
984 985 986 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 984 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
990 991 992 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 990 def previous_page_token @previous_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
997 998 999 1000 1001 1002 1003 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 997 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 |