Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse
- 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 ListAppGroupSubscriptions.
Instance Attribute Summary collapse
-
#app_group_subscriptions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupSubscription>
The list of subscriptions for an AppGroup.
-
#next_page_token ⇒ String
Value that can be sent as
pageTokento retrieve the next page of content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse
constructor
A new instance of GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse
Returns a new instance of GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse.
6709 6710 6711 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6709 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_group_subscriptions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupSubscription>
The list of subscriptions for an AppGroup.
Corresponds to the JSON property appGroupSubscriptions
6701 6702 6703 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6701 def app_group_subscriptions @app_group_subscriptions end |
#next_page_token ⇒ String
Value that can be sent as pageToken to retrieve the next page of content. If
this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
6707 6708 6709 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6707 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6714 6715 6716 6717 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6714 def update!(**args) @app_group_subscriptions = args[:app_group_subscriptions] if args.key?(:app_group_subscriptions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |