Class: Quickfix::UnderlyingIssuer

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

Returns a new instance of UnderlyingIssuer.



3867
3868
3869
3870
3871
3872
3873
# File 'lib/quickfix_fields.rb', line 3867

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

Class Method Details

.fieldObject



3864
3865
3866
# File 'lib/quickfix_fields.rb', line 3864

def UnderlyingIssuer.field
  return 306
end