Class: Quickfix::UnderlyingLegSecurityType

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

Instance Method Summary collapse

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