Class: Quickfix::AssetAttributeValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AssetAttributeValue

Returns a new instance of AssetAttributeValue.



40644
40645
40646
40647
40648
40649
40650
# File 'lib/quickfix_fields.rb', line 40644

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