class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ListEntriesResponse

Response message for ListEntries.

Attributes

entries[RW]

Entry details. Corresponds to the JSON property `entries` @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Entry>]

next_page_token[RW]

Pagination token of the next results page. Empty if there are no more items in results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datacatalog_v1/classes.rb, line 968
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datacatalog_v1/classes.rb, line 973
def update!(**args)
  @entries = args[:entries] if args.key?(:entries)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end