Class: Quickfix::TimeInForce

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TimeInForce

Returns a new instance of TimeInForce.



1462
1463
1464
1465
1466
1467
1468
# File 'lib/quickfix_fields.rb', line 1462

def initialize(data = nil)
	if( data == nil )
		super(59)
	else
		super(59, data)
	end
end

Class Method Details

.fieldObject



1459
1460
1461
# File 'lib/quickfix_fields.rb', line 1459

def TimeInForce.field
	return 59
end