Class: Quickfix::UnderlyingSettledEntityMatrixSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSettledEntityMatrixSource

Returns a new instance of UnderlyingSettledEntityMatrixSource.



26435
26436
26437
26438
26439
26440
26441
# File 'lib/quickfix_fields.rb', line 26435

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