class Google::Apis::PubsubliteV1::ListTopicsResponse
Response for ListTopics.
Attributes
next_page_token[RW]
A token that can be sent as `page_token` to retrieve the next page of results. If this field is omitted, there are no more results. Corresponds to the JSON property `nextPageToken` @return [String]
topics[RW]
The list of topic in the requested parent. The order of the topics is unspecified. Corresponds to the JSON property `topics` @return [Array<Google::Apis::PubsubliteV1::Topic>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/pubsublite_v1/classes.rb, line 436 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/pubsublite_v1/classes.rb, line 441 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @topics = args[:topics] if args.key?(:topics) end