Class: Quickfix::OrderID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderID

Returns a new instance of OrderID.



11901
11902
11903
11904
11905
11906
11907
# File 'lib/quickfix_fields.rb', line 11901

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

Class Method Details

.fieldObject



11898
11899
11900
# File 'lib/quickfix_fields.rb', line 11898

def OrderID.field
	return 37
end