Class: Quickfix::TriggerSymbol

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) ⇒ TriggerSymbol

Returns a new instance of TriggerSymbol.



14735
14736
14737
14738
14739
14740
14741
# File 'lib/quickfix_fields.rb', line 14735

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

Class Method Details

.fieldObject



14732
14733
14734
# File 'lib/quickfix_fields.rb', line 14732

def TriggerSymbol.field
	return 1103
end