Class: Quickfix::ThrottleType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ThrottleType

Returns a new instance of ThrottleType.



22119
22120
22121
22122
22123
22124
22125
# File 'lib/quickfix_fields.rb', line 22119

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