Class: Quickfix::TradeID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeID



2177
2178
2179
2180
2181
2182
2183
# File 'lib/quickfix_fields.rb', line 2177

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

Class Method Details

.fieldObject



2174
2175
2176
# File 'lib/quickfix_fields.rb', line 2174

def TradeID.field
  return 1003
end