Class: Quickfix::LegRepurchaseTerm

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegRepurchaseTerm

Returns a new instance of LegRepurchaseTerm.



6064
6065
6066
6067
6068
6069
6070
# File 'lib/quickfix_fields.rb', line 6064

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