Class: Quickfix::EmailThreadID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EmailThreadID

Returns a new instance of EmailThreadID.



10874
10875
10876
10877
10878
10879
10880
# File 'lib/quickfix_fields.rb', line 10874

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

Class Method Details

.fieldObject



10871
10872
10873
# File 'lib/quickfix_fields.rb', line 10871

def EmailThreadID.field
  return 164
end