Class: Quickfix::ContAmtType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ContAmtType

Returns a new instance of ContAmtType.



9574
9575
9576
9577
9578
9579
9580
# File 'lib/quickfix_fields.rb', line 9574

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

Class Method Details

.fieldObject



9571
9572
9573
# File 'lib/quickfix_fields.rb', line 9571

def ContAmtType.field
	return 519
end