Class: TorigoyaKit::TicketResultUnit
- Inherits:
-
Object
- Object
- TorigoyaKit::TicketResultUnit
- Defined in:
- lib/torigoya_kit/result.rb
Instance Attribute Summary collapse
-
#err ⇒ Object
Returns the value of attribute err.
-
#out ⇒ Object
Returns the value of attribute out.
-
#result ⇒ Object
Returns the value of attribute result.
Instance Method Summary collapse
-
#initialize(out = "", err = "", result = nil) ⇒ TicketResultUnit
constructor
A new instance of TicketResultUnit.
Constructor Details
#initialize(out = "", err = "", result = nil) ⇒ TicketResultUnit
Returns a new instance of TicketResultUnit.
8 9 10 11 12 |
# File 'lib/torigoya_kit/result.rb', line 8 def initialize(out="", err="", result=nil) @out = out @err = err @result = result end |
Instance Attribute Details
#err ⇒ Object
Returns the value of attribute err.
13 14 15 |
# File 'lib/torigoya_kit/result.rb', line 13 def err @err end |
#out ⇒ Object
Returns the value of attribute out.
13 14 15 |
# File 'lib/torigoya_kit/result.rb', line 13 def out @out end |
#result ⇒ Object
Returns the value of attribute result.
13 14 15 |
# File 'lib/torigoya_kit/result.rb', line 13 def result @result end |