Class: Quickfix::ReturnTrigger

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

Instance Method Summary collapse

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