Class: Quickfix::DiscretionLimitType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DiscretionLimitType

Returns a new instance of DiscretionLimitType.



11433
11434
11435
11436
11437
11438
11439
# File 'lib/quickfix_fields.rb', line 11433

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