Class: Quickfix::UnderlyingPayAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingPayAmount

Returns a new instance of UnderlyingPayAmount.



13279
13280
13281
13282
13283
13284
13285
# File 'lib/quickfix_fields.rb', line 13279

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