Class: Quickfix::AssetType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AssetType

Returns a new instance of AssetType.



25408
25409
25410
25411
25412
25413
25414
# File 'lib/quickfix_fields.rb', line 25408

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