Class: Figo::Notification
Overview
Object representing a configured notification, e.g. a webhook or email hook
Instance Attribute Summary collapse
-
#notification_id ⇒ String
Internal figo Connect notification ID from the notification registration response.
-
#notify_uri ⇒ String
Notification messages will be sent to this URL.
-
#observe_key ⇒ String
One of the notification keys specified in the figo Connect API specification.
-
#state ⇒ String
State similiar to sync and logon process.
Method Summary
Methods inherited from Base
#dump, dump_attributes, #initialize
Constructor Details
This class inherits a constructor from Figo::Base
Instance Attribute Details
#notification_id ⇒ String
Internal figo Connect notification ID from the notification registration response
383 384 385 |
# File 'lib/models.rb', line 383 def notification_id @notification_id end |
#notify_uri ⇒ String
Notification messages will be sent to this URL
391 392 393 |
# File 'lib/models.rb', line 391 def notify_uri @notify_uri end |
#observe_key ⇒ String
One of the notification keys specified in the figo Connect API specification
387 388 389 |
# File 'lib/models.rb', line 387 def observe_key @observe_key end |
#state ⇒ String
State similiar to sync and logon process. It will passed as POST payload for webhooks
395 396 397 |
# File 'lib/models.rb', line 395 def state @state end |