Class: Quickfix::UnderlyingStipType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStipType

Returns a new instance of UnderlyingStipType.



12018
12019
12020
12021
12022
12023
12024
# File 'lib/quickfix_fields.rb', line 12018

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