Class: Quickfix::UnderlyingDeliveryAmount

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingDeliveryAmount

Returns a new instance of UnderlyingDeliveryAmount.



9288
9289
9290
9291
9292
9293
9294
# File 'lib/quickfix_fields.rb', line 9288

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

Class Method Details

.fieldObject



9285
9286
9287
# File 'lib/quickfix_fields.rb', line 9285

def UnderlyingDeliveryAmount.field
  return 1037
end