Class: Quickfix::ThrottleTimeUnit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ThrottleTimeUnit

Returns a new instance of ThrottleTimeUnit.



22158
22159
22160
22161
22162
22163
22164
# File 'lib/quickfix_fields.rb', line 22158

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