class Google::Apis::ArtifactregistryV1beta2::ListPackagesResponse

The response from listing packages.

Attributes

next_page_token[RW]

The token to retrieve the next page of packages, or empty if there are no more packages to return. Corresponds to the JSON property `nextPageToken` @return [String]

packages[RW]

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

Public Class Methods

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