Class: Quickfix::QuantityType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuantityType

Returns a new instance of QuantityType.



3126
3127
3128
3129
3130
3131
3132
# File 'lib/quickfix_fields.rb', line 3126

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

Class Method Details

.fieldObject



3123
3124
3125
# File 'lib/quickfix_fields.rb', line 3123

def QuantityType.field
	return 465
end