Class: Quickfix::CurrentCollateralAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CurrentCollateralAmount

Returns a new instance of CurrentCollateralAmount.



22288
22289
22290
22291
22292
22293
22294
# File 'lib/quickfix_fields.rb', line 22288

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