Class: Google::Apis::WorkspaceeventsV1::ListTaskPushNotificationConfigResponse
- Inherits:
-
Object
- Object
- Google::Apis::WorkspaceeventsV1::ListTaskPushNotificationConfigResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workspaceevents_v1/classes.rb,
lib/google/apis/workspaceevents_v1/representations.rb,
lib/google/apis/workspaceevents_v1/representations.rb
Instance Attribute Summary collapse
-
#configs ⇒ Array<Google::Apis::WorkspaceeventsV1::TaskPushNotificationConfig>
The list of push notification configurations.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTaskPushNotificationConfigResponse
constructor
A new instance of ListTaskPushNotificationConfigResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTaskPushNotificationConfigResponse
Returns a new instance of ListTaskPushNotificationConfigResponse.
266 267 268 |
# File 'lib/google/apis/workspaceevents_v1/classes.rb', line 266 def initialize(**args) update!(**args) end |
Instance Attribute Details
#configs ⇒ Array<Google::Apis::WorkspaceeventsV1::TaskPushNotificationConfig>
The list of push notification configurations.
Corresponds to the JSON property configs
258 259 260 |
# File 'lib/google/apis/workspaceevents_v1/classes.rb', line 258 def configs @configs end |
#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
264 265 266 |
# File 'lib/google/apis/workspaceevents_v1/classes.rb', line 264 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
271 272 273 274 |
# File 'lib/google/apis/workspaceevents_v1/classes.rb', line 271 def update!(**args) @configs = args[:configs] if args.key?(:configs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |