Class: Quickfix::DerivativeIssuer

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DerivativeIssuer

Returns a new instance of DerivativeIssuer.



16932
16933
16934
16935
16936
16937
16938
# File 'lib/quickfix_fields.rb', line 16932

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