Class: Quickfix::TriggerAction

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TriggerAction

Returns a new instance of TriggerAction.



6610
6611
6612
6613
6614
6615
6616
# File 'lib/quickfix_fields.rb', line 6610

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

Class Method Details

.fieldObject



6607
6608
6609
# File 'lib/quickfix_fields.rb', line 6607

def TriggerAction.field
	return 1101
end