Class: Quickfix::QuoteAttributeType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteAttributeType

Returns a new instance of QuoteAttributeType.



75731
75732
75733
75734
75735
75736
75737
# File 'lib/quickfix_fields.rb', line 75731

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