Class: Quickfix::YieldType

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

Class Method Details

.fieldObject



5853
5854
5855
# File 'lib/quickfix_fields.rb', line 5853

def YieldType.field
  return 235
end