Class: Quickfix::UnderlyingSecurityDesc

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSecurityDesc

Returns a new instance of UnderlyingSecurityDesc.



3880
3881
3882
3883
3884
3885
3886
# File 'lib/quickfix_fields.rb', line 3880

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