Class: Quickfix::UnderlyingStipValue

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

Returns a new instance of UnderlyingStipValue.



12031
12032
12033
12034
12035
12036
12037
# File 'lib/quickfix_fields.rb', line 12031

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

Class Method Details

.fieldObject



12028
12029
12030
# File 'lib/quickfix_fields.rb', line 12028

def UnderlyingStipValue.field
  return 889
end