Class: Quickfix::DayCumQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DayCumQty

Returns a new instance of DayCumQty.



4101
4102
4103
4104
4105
4106
4107
# File 'lib/quickfix_fields.rb', line 4101

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

Class Method Details

.fieldObject



4098
4099
4100
# File 'lib/quickfix_fields.rb', line 4098

def DayCumQty.field
	return 425
end