Class: Quickfix::YieldType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ YieldType

Returns a new instance of YieldType.



5856
5857
5858
5859
5860
5861
5862
# File 'lib/quickfix_fields.rb', line 5856

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