Class: Quickfix::OrdStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrdStatus

Returns a new instance of OrdStatus.



4725
4726
4727
4728
4729
4730
4731
# File 'lib/quickfix_fields.rb', line 4725

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

Class Method Details

.fieldObject



4722
4723
4724
# File 'lib/quickfix_fields.rb', line 4722

def OrdStatus.field
	return 39
end