Class: Quickfix::SettlType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SettlType

Returns a new instance of SettlType.



8898
8899
8900
8901
8902
8903
8904
# File 'lib/quickfix_fields.rb', line 8898

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

Class Method Details

.fieldObject



8895
8896
8897
# File 'lib/quickfix_fields.rb', line 8895

def SettlType.field
	return 63
end