Class: Quickfix::PriceUnitOfMeasureCurrency

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceUnitOfMeasureCurrency

Returns a new instance of PriceUnitOfMeasureCurrency.



22717
22718
22719
22720
22721
22722
22723
# File 'lib/quickfix_fields.rb', line 22717

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