Class: Quickfix::TradeVersion

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TradeVersion

Returns a new instance of TradeVersion.



46312
46313
46314
46315
46316
46317
46318
# File 'lib/quickfix_fields.rb', line 46312

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

Class Method Details

.fieldObject



46309
46310
46311
# File 'lib/quickfix_fields.rb', line 46309

def TradeVersion.field
  return 2302
end