Class: Quickfix::UnderlyingLegSecurityType

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

Returns a new instance of UnderlyingLegSecurityType.



17894
17895
17896
17897
17898
17899
17900
# File 'lib/quickfix_fields.rb', line 17894

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

Class Method Details

.fieldObject



17891
17892
17893
# File 'lib/quickfix_fields.rb', line 17891

def UnderlyingLegSecurityType.field
  return 1337
end