Class: Figo::TaskState
Instance Attribute Summary collapse
- #account_id ⇒ Object
- #challenge ⇒ Object
- #is_ended ⇒ Object
- #is_erroneous ⇒ Object
- #is_waiting_for_pin ⇒ Object
- #is_waiting_for_response ⇒ Object
- #message ⇒ Object
Instance Method Summary collapse
-
#initialize(session, json) ⇒ TaskState
constructor
A new instance of TaskState.
Methods inherited from Base
Constructor Details
#initialize(session, json) ⇒ TaskState
Returns a new instance of TaskState.
18 19 20 |
# File 'lib/task/model.rb', line 18 def initialize(session, json) super(session, json) end |
Instance Attribute Details
#account_id ⇒ Object
23 24 25 |
# File 'lib/task/model.rb', line 23 def account_id @account_id end |
#challenge ⇒ Object
41 42 43 |
# File 'lib/task/model.rb', line 41 def challenge @challenge end |
#is_ended ⇒ Object
38 39 40 |
# File 'lib/task/model.rb', line 38 def is_ended @is_ended end |
#is_erroneous ⇒ Object
35 36 37 |
# File 'lib/task/model.rb', line 35 def is_erroneous @is_erroneous end |
#is_waiting_for_pin ⇒ Object
29 30 31 |
# File 'lib/task/model.rb', line 29 def is_waiting_for_pin @is_waiting_for_pin end |
#is_waiting_for_response ⇒ Object
32 33 34 |
# File 'lib/task/model.rb', line 32 def is_waiting_for_response @is_waiting_for_response end |
#message ⇒ Object
26 27 28 |
# File 'lib/task/model.rb', line 26 def @message end |