class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ListEntryGroupsResponse

Response message for ListEntryGroups.

Attributes

entry_groups[RW]

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

next_page_token[RW]

Pagination token to specify in the next call to retrieve the next page of results. Empty if there are no more items. 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 994
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 999
def update!(**args)
  @entry_groups = args[:entry_groups] if args.key?(:entry_groups)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end