Class: Quickfix::TriggerType

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

Returns a new instance of TriggerType.



14696
14697
14698
14699
14700
14701
14702
# File 'lib/quickfix_fields.rb', line 14696

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

Class Method Details

.fieldObject



14693
14694
14695
# File 'lib/quickfix_fields.rb', line 14693

def TriggerType.field
  return 1100
end