Class: Seam::Resources::ActionAttempt::LockDoor

Inherits:
ActionAttempt
  • Object
show all
Defined in:
lib/seam/resources/action_attempt.rb

Overview

Locking a door is pending.

Defined Under Namespace

Classes: Error, Result

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#action_attempt_idString

ID of the action attempt.

Returns:

  • (String)


45
46
47
# File 'lib/seam/resources/action_attempt.rb', line 45

def action_attempt_id
  @action_attempt_id
end

#action_typeString

Action attempt to track the status of locking a door. Known values:

  • LOCK_DOOR

Returns:

  • (String)


50
51
52
# File 'lib/seam/resources/action_attempt.rb', line 50

def action_type
  @action_type
end

#statusString

Known values:

  • success
  • pending
  • error

Returns:

  • (String)


56
57
58
# File 'lib/seam/resources/action_attempt.rb', line 56

def status
  @status
end

Instance Method Details

#errorError?

Error associated with the action. Only present when status is error; nil otherwise.

Returns:



36
# File 'lib/seam/resources/action_attempt.rb', line 36

resource_accessor :error, Error

#resultResult?

Result of the action. Only present when status is success; nil otherwise.

Returns:



41
# File 'lib/seam/resources/action_attempt.rb', line 41

resource_accessor :result, Result