Class: Quickfix::TierCode

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

Returns a new instance of TierCode.



13396
13397
13398
13399
13400
13401
13402
# File 'lib/quickfix_fields.rb', line 13396

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

Class Method Details

.fieldObject



13393
13394
13395
# File 'lib/quickfix_fields.rb', line 13393

def TierCode.field
  return 994
end