Class: Quickfix::TimeInForce

Inherits:
CharField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

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

.fieldObject



10442
10443
10444
# File 'lib/quickfix_fields.rb', line 10442

def TimeInForce.field
  return 59
end