Class: Quickfix::SettlementAmount

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SettlementAmount

Returns a new instance of SettlementAmount.



22249
22250
22251
22252
22253
22254
22255
# File 'lib/quickfix_fields.rb', line 22249

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

Class Method Details

.fieldObject



22246
22247
22248
# File 'lib/quickfix_fields.rb', line 22246

def SettlementAmount.field
	return 1701
end