Class: Quickfix::OrdStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ OrdStatus

Returns a new instance of OrdStatus.



1319
1320
1321
1322
1323
1324
1325
# File 'lib/quickfix_fields.rb', line 1319

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

Class Method Details

.fieldObject



1316
1317
1318
# File 'lib/quickfix_fields.rb', line 1316

def OrdStatus.field
	return 39
end