Class: Quickfix::PaymentSettlAmount

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) ⇒ PaymentSettlAmount

Returns a new instance of PaymentSettlAmount.



30296
30297
30298
30299
30300
30301
30302
# File 'lib/quickfix_fields.rb', line 30296

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

Class Method Details

.fieldObject



30293
30294
30295
# File 'lib/quickfix_fields.rb', line 30293

def PaymentSettlAmount.field
	return 40231
end