Class: Quickfix::StrikeCurrency

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeCurrency

Returns a new instance of StrikeCurrency.



12772
12773
12774
12775
12776
12777
12778
# File 'lib/quickfix_fields.rb', line 12772

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