class Google::Apis::PubsubliteV1::ListTopicSubscriptionsResponse

Response for ListTopicSubscriptions.

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]

subscriptions[RW]

The names of subscriptions attached to the topic. The order of the subscriptions is unspecified. Corresponds to the JSON property `subscriptions` @return [Array<String>]

Public Class Methods

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