Class: Quickfix::TimeInForce
- Inherits:
-
CharField
- Object
- CharField
- Quickfix::TimeInForce
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ TimeInForce
constructor
A new instance of TimeInForce.
Constructor Details
#initialize(data = nil) ⇒ TimeInForce
Returns a new instance of TimeInForce.
10445 10446 10447 10448 10449 10450 10451 |
# File 'lib/quickfix_fields.rb', line 10445 def initialize(data = nil) if( data == nil ) super(59) else super(59, data) end end |
Class Method Details
.field ⇒ Object
10442 10443 10444 |
# File 'lib/quickfix_fields.rb', line 10442 def TimeInForce.field return 59 end |