Class: Quickfix::AssignmentUnit

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ AssignmentUnit

Returns a new instance of AssignmentUnit.



10198
10199
10200
10201
10202
10203
10204
# File 'lib/quickfix_fields.rb', line 10198

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

Class Method Details

.fieldObject



10195
10196
10197
# File 'lib/quickfix_fields.rb', line 10195

def AssignmentUnit.field
	return 745
end