Class: Google::Apis::PubsubliteV1::ListTopicsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PubsubliteV1::ListTopicsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/pubsublite_v1/classes.rb,
lib/google/apis/pubsublite_v1/representations.rb,
lib/google/apis/pubsublite_v1/representations.rb
Overview
Response for ListTopics.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as
page_token
to retrieve the next page of results. -
#topics ⇒ Array<Google::Apis::PubsubliteV1::Topic>
The list of topic in the requested parent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTopicsResponse
constructor
A new instance of ListTopicsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTopicsResponse
Returns a new instance of ListTopicsResponse.
312 313 314 |
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 312 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
304 305 306 |
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 304 def next_page_token @next_page_token end |
#topics ⇒ Array<Google::Apis::PubsubliteV1::Topic>
The list of topic in the requested parent. The order of the topics is
unspecified.
Corresponds to the JSON property topics
310 311 312 |
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 310 def topics @topics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
317 318 319 320 |
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 317 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @topics = args[:topics] if args.key?(:topics) end |