class Google::Apis::YoutubePartnerV1::ClaimListResponse
Attributes
A list of claims that match the request criteria. Corresponds to the JSON property `items` @return [Array<Google::Apis::YoutubePartnerV1::Claim>]
The type of the API response. For this operation, the value is youtubePartner# claimList. Corresponds to the JSON property `kind` @return [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` @return [String]
The pageInfo object encapsulates paging information for the result set. Corresponds to the JSON property `pageInfo` @return [Google::Apis::YoutubePartnerV1::PageInfo]
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` @return [String]
Public Class Methods
# File generated/google/apis/youtube_partner_v1/classes.rb, line 1138 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/youtube_partner_v1/classes.rb, line 1143 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