Class: Google::Apis::AnalyticshubV1::ListSharedResourceSubscriptionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticshubV1::ListSharedResourceSubscriptionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticshub_v1/classes.rb,
lib/google/apis/analyticshub_v1/representations.rb,
lib/google/apis/analyticshub_v1/representations.rb
Overview
Message for response to the listing of shared resource subscriptions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Next page token.
-
#shared_resource_subscriptions ⇒ Array<Google::Apis::AnalyticshubV1::Subscription>
The list of subscriptions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSharedResourceSubscriptionsResponse
constructor
A new instance of ListSharedResourceSubscriptionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSharedResourceSubscriptionsResponse
Returns a new instance of ListSharedResourceSubscriptionsResponse.
1467 1468 1469 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1467 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
1460 1461 1462 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1460 def next_page_token @next_page_token end |
#shared_resource_subscriptions ⇒ Array<Google::Apis::AnalyticshubV1::Subscription>
The list of subscriptions.
Corresponds to the JSON property sharedResourceSubscriptions
1465 1466 1467 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1465 def shared_resource_subscriptions @shared_resource_subscriptions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1472 1473 1474 1475 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1472 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @shared_resource_subscriptions = args[:shared_resource_subscriptions] if args.key?(:shared_resource_subscriptions) end |