Class: Quickfix::OrderAttributeValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderAttributeValue

Returns a new instance of OrderAttributeValue.



75237
75238
75239
75240
75241
75242
75243
# File 'lib/quickfix_fields.rb', line 75237

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