Class: Quickfix::TriggerAction

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

Returns a new instance of TriggerAction.



14709
14710
14711
14712
14713
14714
14715
# File 'lib/quickfix_fields.rb', line 14709

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

Class Method Details

.fieldObject



14706
14707
14708
# File 'lib/quickfix_fields.rb', line 14706

def TriggerAction.field
  return 1101
end