Class: Quickfix::PriceQuoteCurrency

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceQuoteCurrency

Returns a new instance of PriceQuoteCurrency.



21677
21678
21679
21680
21681
21682
21683
# File 'lib/quickfix_fields.rb', line 21677

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