class Google::Apis::PolyV1::ListUserAssetsResponse
A response message from a request to list.
Attributes
next_page_token[RW]
The continuation token for retrieving the next page. If empty, indicates that there are no more pages. To get the next page, submit the same request specifying this value as the page_token. Corresponds to the JSON property `nextPageToken` @return [String]
total_size[RW]
The total number of assets in the list, without pagination. Corresponds to the JSON property `totalSize` @return [Fixnum]
user_assets[RW]
A list of UserAssets matching the request. Corresponds to the JSON property `userAssets` @return [Array<Google::Apis::PolyV1::UserAsset>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/poly_v1/classes.rb, line 390 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/poly_v1/classes.rb, line 395 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) @user_assets = args[:user_assets] if args.key?(:user_assets) end