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.
1216 1217 1218 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1216 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
1209 1210 1211 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1209 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
1214 1215 1216 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1214 def shared_resource_subscriptions @shared_resource_subscriptions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1221 1222 1223 1224 |
# File 'lib/google/apis/analyticshub_v1/classes.rb', line 1221 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 |