Class: Seam::Resources::SeamEvent::AccessMethodFailedToIssue
- Inherits:
-
SeamEvent
- Object
- SeamEvent
- Seam::Resources::SeamEvent::AccessMethodFailedToIssue
- Defined in:
- lib/seam/resources/event.rb
Overview
Seam was unable to issue this access method before its access grant started, so the recipient may be unable to access the space. This usually points to a problem that needs attention, such as an offline or disconnected device. Seam keeps retrying, and the accompanying failed_to_issue error clears automatically if the access method is eventually issued.
Instance Attribute Summary collapse
-
#access_grant_ids ⇒ Array<String>
IDs of the access grants associated with this access method.
-
#access_grant_keys ⇒ Array<String>
Keys of the access grants associated with this access method (if present).
-
#access_method_id ⇒ String
ID of the affected access method.
-
#event_description ⇒ String?
Human-readable description of the event.
-
#event_id ⇒ String
ID of the event.
-
#event_type ⇒ String
Known values: -
access_method.failed_to_issue. -
#workspace_id ⇒ String
ID of the workspace associated with the event.
Instance Method Summary collapse
-
#created_at ⇒ Time
Date and time at which the event was created.
-
#occurred_at ⇒ Time
Date and time at which the event occurred.
Instance Attribute Details
#access_grant_ids ⇒ Array<String>
IDs of the access grants associated with this access method.
1819 1820 1821 |
# File 'lib/seam/resources/event.rb', line 1819 def access_grant_ids @access_grant_ids end |
#access_grant_keys ⇒ Array<String>
Keys of the access grants associated with this access method (if present).
1822 1823 1824 |
# File 'lib/seam/resources/event.rb', line 1822 def access_grant_keys @access_grant_keys end |
#access_method_id ⇒ String
ID of the affected access method.
1825 1826 1827 |
# File 'lib/seam/resources/event.rb', line 1825 def access_method_id @access_method_id end |
#event_description ⇒ String?
Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.
1828 1829 1830 |
# File 'lib/seam/resources/event.rb', line 1828 def event_description @event_description end |
#event_id ⇒ String
ID of the event.
1831 1832 1833 |
# File 'lib/seam/resources/event.rb', line 1831 def event_id @event_id end |
#event_type ⇒ String
Known values:
access_method.failed_to_issue
1835 1836 1837 |
# File 'lib/seam/resources/event.rb', line 1835 def event_type @event_type end |
#workspace_id ⇒ String
ID of the workspace associated with the event.
1838 1839 1840 |
# File 'lib/seam/resources/event.rb', line 1838 def workspace_id @workspace_id end |
Instance Method Details
#created_at ⇒ Time
Date and time at which the event was created.
1841 |
# File 'lib/seam/resources/event.rb', line 1841 date_accessor :created_at |
#occurred_at ⇒ Time
Date and time at which the event occurred.
1844 |
# File 'lib/seam/resources/event.rb', line 1844 date_accessor :occurred_at |