Class: Quickfix::UnderlyingSecurityType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSecurityType

Returns a new instance of UnderlyingSecurityType.



3919
3920
3921
3922
3923
3924
3925
# File 'lib/quickfix_fields.rb', line 3919

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