Class: Quickfix::DerivativeSymbol

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DerivativeSymbol

Returns a new instance of DerivativeSymbol.



17192
17193
17194
17195
17196
17197
17198
# File 'lib/quickfix_fields.rb', line 17192

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

Class Method Details

.fieldObject



17189
17190
17191
# File 'lib/quickfix_fields.rb', line 17189

def DerivativeSymbol.field
  return 1214
end