Class: Quickfix::TradeContingency

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TradeContingency

Returns a new instance of TradeContingency.



57791
57792
57793
57794
57795
57796
57797
# File 'lib/quickfix_fields.rb', line 57791

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

Class Method Details

.fieldObject



57788
57789
57790
# File 'lib/quickfix_fields.rb', line 57788

def TradeContingency.field
	return 2387
end