Class: Quickfix::EffectiveBusinessDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EffectiveBusinessDate



57674
57675
57676
57677
57678
57679
57680
# File 'lib/quickfix_fields.rb', line 57674

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