Class: Quickfix::ContAmtValue

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ContAmtValue

Returns a new instance of ContAmtValue.



3113
3114
3115
3116
3117
3118
3119
# File 'lib/quickfix_fields.rb', line 3113

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

Class Method Details

.fieldObject



3110
3111
3112
# File 'lib/quickfix_fields.rb', line 3110

def ContAmtValue.field
	return 520
end