Class: Quickfix::NoOrders

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoOrders

Returns a new instance of NoOrders.



7975
7976
7977
7978
7979
7980
7981
# File 'lib/quickfix_fields.rb', line 7975

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

Class Method Details

.fieldObject



7972
7973
7974
# File 'lib/quickfix_fields.rb', line 7972

def NoOrders.field
	return 73
end