Class: Quickfix::UnderlyingCurrency

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingCurrency

Returns a new instance of UnderlyingCurrency.



8274
8275
8276
8277
8278
8279
8280
# File 'lib/quickfix_fields.rb', line 8274

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

Class Method Details

.fieldObject



8271
8272
8273
# File 'lib/quickfix_fields.rb', line 8271

def UnderlyingCurrency.field
  return 318
end