Class: Quickfix::UnderlyingDeliveryAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingDeliveryAmount

Returns a new instance of UnderlyingDeliveryAmount.



13916
13917
13918
13919
13920
13921
13922
# File 'lib/quickfix_fields.rb', line 13916

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