Class: Quickfix::NoUnderlyingAmounts

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoUnderlyingAmounts

Returns a new instance of NoUnderlyingAmounts.



13266
13267
13268
13269
13270
13271
13272
# File 'lib/quickfix_fields.rb', line 13266

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