Class: Quickfix::ContAmtType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ContAmtType

Returns a new instance of ContAmtType.



7130
7131
7132
7133
7134
7135
7136
# File 'lib/quickfix_fields.rb', line 7130

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

Class Method Details

.fieldObject



7127
7128
7129
# File 'lib/quickfix_fields.rb', line 7127

def ContAmtType.field
  return 519
end