Class: Google::Apis::AlertcenterV1beta1::ListAlertsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb

Overview

Response message for an alert listing request.

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) ⇒ ListAlertsResponse

Returns a new instance of ListAlertsResponse.



1004
1005
1006
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1004

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alertsArray<Google::Apis::AlertcenterV1beta1::Alert>

The list of alerts. Corresponds to the JSON property alerts



994
995
996
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 994

def alerts
  @alerts
end

#next_page_tokenString

The token for the next page. If not empty, indicates that there may be more alerts that match the listing request; this value can be used in a subsequent ListAlertsRequest to get alerts continuing from last result of the current list call. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1002
1003
1004
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1002

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1009
1010
1011
1012
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1009

def update!(**args)
  @alerts = args[:alerts] if args.key?(:alerts)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end