Class: Quickfix::TriggerType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TriggerType

Returns a new instance of TriggerType.



2788
2789
2790
2791
2792
2793
2794
# File 'lib/quickfix_fields.rb', line 2788

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

Class Method Details

.fieldObject



2785
2786
2787
# File 'lib/quickfix_fields.rb', line 2785

def TriggerType.field
	return 1100
end