Class: Quickfix::TradeAggregationRejectReason

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

Returns a new instance of TradeAggregationRejectReason.



76966
76967
76968
76969
76970
76971
76972
# File 'lib/quickfix_fields.rb', line 76966

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

Class Method Details

.fieldObject



76963
76964
76965
# File 'lib/quickfix_fields.rb', line 76963

def TradeAggregationRejectReason.field
  return 2791
end