class Google::Apis::ArtifactregistryV1beta2::ListFilesResponse

The response from listing files.

Attributes

files[RW]

The files returned. Corresponds to the JSON property `files` @return [Array<Google::Apis::ArtifactregistryV1beta2::GoogleDevtoolsArtifactregistryV1beta2File>]

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_v1beta2/classes.rb, line 511
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_v1beta2/classes.rb, line 516
def update!(**args)
  @files = args[:files] if args.key?(:files)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end