class Google::Apis::ArtifactregistryV1beta1::ListFilesResponse
The response from listing files.
Attributes
files[RW]
The files returned. Corresponds to the JSON property `files` @return [Array<Google::Apis::ArtifactregistryV1beta1::File>]
next_page_token[RW]
The token to retrieve the next page of files, or empty if there are no more files to return. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/artifactregistry_v1beta1/classes.rb, line 473 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/artifactregistry_v1beta1/classes.rb, line 478 def update!(**args) @files = args[:files] if args.key?(:files) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end