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.
625 626 627 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 625 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
618 619 620 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 618 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
623 624 625 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 623 def shared_resource_subscriptions @shared_resource_subscriptions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
630 631 632 633 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 630 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 |