Class: Quickfix::TradeMatchRejectReason

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

Returns a new instance of TradeMatchRejectReason.



24823
24824
24825
24826
24827
24828
24829
# File 'lib/quickfix_fields.rb', line 24823

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

Class Method Details

.fieldObject



24820
24821
24822
# File 'lib/quickfix_fields.rb', line 24820

def TradeMatchRejectReason.field
  return 1897
end