class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse

Response for ListDeveloperSubscriptions.

Attributes

developer_subscriptions[RW]

List of all subscriptions. Corresponds to the JSON property `developerSubscriptions` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperSubscription>]

next_start_key[RW]

Value that can be sent as `startKey` to retrieve the next page of content. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property `nextStartKey` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 4281
def update!(**args)
  @developer_subscriptions = args[:developer_subscriptions] if args.key?(:developer_subscriptions)
  @next_start_key = args[:next_start_key] if args.key?(:next_start_key)
end