Class: Quickfix::ReturnTrigger

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ReturnTrigger

Returns a new instance of ReturnTrigger.



76446
76447
76448
76449
76450
76451
76452
# File 'lib/quickfix_fields.rb', line 76446

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

Class Method Details

.fieldObject



76443
76444
76445
# File 'lib/quickfix_fields.rb', line 76443

def ReturnTrigger.field
	return 2753
end