Class: Quickfix::MiscFeeAmt

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

Returns a new instance of MiscFeeAmt.



2255
2256
2257
2258
2259
2260
2261
# File 'lib/quickfix_fields.rb', line 2255

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

Class Method Details

.fieldObject



2252
2253
2254
# File 'lib/quickfix_fields.rb', line 2252

def MiscFeeAmt.field
	return 137
end