Class: Quickfix::OrderEventReason

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

Returns a new instance of OrderEventReason.



23510
23511
23512
23513
23514
23515
23516
# File 'lib/quickfix_fields.rb', line 23510

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

Class Method Details

.fieldObject



23507
23508
23509
# File 'lib/quickfix_fields.rb', line 23507

def OrderEventReason.field
  return 1798
end