Class: Google::Apis::MirrorV1::ListSubscriptionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::MirrorV1::ListSubscriptionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/mirror_v1/classes.rb,
generated/google/apis/mirror_v1/representations.rb,
generated/google/apis/mirror_v1/representations.rb
Overview
A list of Subscriptions. This is the response from the server to GET requests on the subscription collection.
Instance Attribute Summary collapse
-
#items ⇒ Array<Google::Apis::MirrorV1::Subscription>
The list of subscriptions.
-
#kind ⇒ String
The type of resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSubscriptionsResponse
constructor
A new instance of ListSubscriptionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListSubscriptionsResponse
Returns a new instance of ListSubscriptionsResponse
731 732 733 |
# File 'generated/google/apis/mirror_v1/classes.rb', line 731 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::MirrorV1::Subscription>
The list of subscriptions.
Corresponds to the JSON property items
724 725 726 |
# File 'generated/google/apis/mirror_v1/classes.rb', line 724 def items @items end |
#kind ⇒ String
The type of resource. This is always mirror#subscriptionsList.
Corresponds to the JSON property kind
729 730 731 |
# File 'generated/google/apis/mirror_v1/classes.rb', line 729 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
736 737 738 739 |
# File 'generated/google/apis/mirror_v1/classes.rb', line 736 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |