Class: Quickfix::SecondaryAssetType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryAssetType

Returns a new instance of SecondaryAssetType.



25915
25916
25917
25918
25919
25920
25921
# File 'lib/quickfix_fields.rb', line 25915

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