Class: Quickfix::NoContAmts

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

Returns a new instance of NoContAmts.



7117
7118
7119
7120
7121
7122
7123
# File 'lib/quickfix_fields.rb', line 7117

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

Class Method Details

.fieldObject



7114
7115
7116
# File 'lib/quickfix_fields.rb', line 7114

def NoContAmts.field
  return 518
end