class Google::Apis::YoutubePartnerV1::AssetShareListResponse
Attributes
items[RW]
An assetShare resource that matches the request criteria. Corresponds to the JSON property `items` @return [Array<Google::Apis::YoutubePartnerV1::AssetShare>]
kind[RW]
The type of the API response. For this operation, the value is youtubePartner# assetShareList. Corresponds to the JSON property `kind` @return [String]
next_page_token[RW]
The token that can be used as the value of the pageToken parameter to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
page_info[RW]
The pageInfo object encapsulates paging information for the result set. Corresponds to the JSON property `pageInfo` @return [Google::Apis::YoutubePartnerV1::PageInfo]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 468 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_partner_v1/classes.rb, line 473 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