class Google::Apis::PolyV1::ListAssetsResponse

A response message from a request to list.

Attributes

assets[RW]

A list of assets that match the criteria specified in the request. Corresponds to the JSON property `assets` @return [Array<Google::Apis::PolyV1::Asset>]

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]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/poly_v1/classes.rb, line 324
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 329
def update!(**args)
  @assets = args[:assets] if args.key?(:assets)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @total_size = args[:total_size] if args.key?(:total_size)
end