Class: Google::Apis::CloudsupportV2::ListSupportEventSubscriptionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudsupportV2::ListSupportEventSubscriptionsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsupport_v2/classes.rb,
lib/google/apis/cloudsupport_v2/representations.rb,
lib/google/apis/cloudsupport_v2/representations.rb
Overview
Response message for ListSupportEventSubscriptions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#support_event_subscriptions ⇒ Array<Google::Apis::CloudsupportV2::SupportEventSubscription>
The support event subscriptions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSupportEventSubscriptionsResponse
constructor
A new instance of ListSupportEventSubscriptionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSupportEventSubscriptionsResponse
Returns a new instance of ListSupportEventSubscriptionsResponse.
889 890 891 |
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 889 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
882 883 884 |
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 882 def next_page_token @next_page_token end |
#support_event_subscriptions ⇒ Array<Google::Apis::CloudsupportV2::SupportEventSubscription>
The support event subscriptions.
Corresponds to the JSON property supportEventSubscriptions
887 888 889 |
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 887 def support_event_subscriptions @support_event_subscriptions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
894 895 896 897 |
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 894 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @support_event_subscriptions = args[:support_event_subscriptions] if args.key?(:support_event_subscriptions) end |