class Google::Apis::PubsubV1beta1a::ListSubscriptionsResponse

Response for the ListSubscriptions method.

Attributes

next_page_token[RW]

If not empty, indicates that there are more subscriptions that match the request and this value should be passed to the next ListSubscriptionsRequest to continue. Corresponds to the JSON property `nextPageToken` @return [String]

subscription[RW]

The subscriptions that match the request. Corresponds to the JSON property `subscription` @return [Array<Google::Apis::PubsubV1beta1a::Subscription>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/pubsub_v1beta1a/classes.rb, line 126
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/pubsub_v1beta1a/classes.rb, line 131
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @subscription = args[:subscription] if args.key?(:subscription)
end