Class: Quickfix::Concession

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Concession

Returns a new instance of Concession.



5895
5896
5897
5898
5899
5900
5901
# File 'lib/quickfix_fields.rb', line 5895

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