Class: Google::Apis::MirrorV1::ListSubscriptionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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

#itemsArray<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

#kindString

The type of resource. This is always mirror#subscriptionsList. Corresponds to the JSON property kind

Returns:

  • (String)


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