Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Response for ListDeveloperSubscriptions.
Instance Attribute Summary collapse
-
#developer_subscriptions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperSubscription>
List of all subscriptions.
-
#next_start_key ⇒ String
Value that can be sent as
startKey
to retrieve the next page of content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse
constructor
A new instance of GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse
Returns a new instance of GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse.
6076 6077 6078 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6076 def initialize(**args) update!(**args) end |
Instance Attribute Details
#developer_subscriptions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperSubscription>
List of all subscriptions.
Corresponds to the JSON property developerSubscriptions
6068 6069 6070 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6068 def developer_subscriptions @developer_subscriptions end |
#next_start_key ⇒ String
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
6074 6075 6076 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6074 def next_start_key @next_start_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6081 6082 6083 6084 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6081 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 |