class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ListTagsResponse

Response message for ListTags.

Attributes

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]

tags[RW]

Tag details. Corresponds to the JSON property `tags` @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Tag>]

Public Class Methods

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