Class: Quickfix::TierCode

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TierCode

Returns a new instance of TierCode.



19805
19806
19807
19808
19809
19810
19811
# File 'lib/quickfix_fields.rb', line 19805

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

Class Method Details

.fieldObject



19802
19803
19804
# File 'lib/quickfix_fields.rb', line 19802

def TierCode.field
  return 994
end