Class: Quickfix::UnderlyingSecurityStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSecurityStatus

Returns a new instance of UnderlyingSecurityStatus.



26331
26332
26333
26334
26335
26336
26337
# File 'lib/quickfix_fields.rb', line 26331

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