Class: Quickfix::ContAmtValue

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

Returns a new instance of ContAmtValue.



7143
7144
7145
7146
7147
7148
7149
# File 'lib/quickfix_fields.rb', line 7143

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

Class Method Details

.fieldObject



7140
7141
7142
# File 'lib/quickfix_fields.rb', line 7140

def ContAmtValue.field
  return 520
end