Class: Quickfix::PartyActionRejectReason

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

Returns a new instance of PartyActionRejectReason.



56816
56817
56818
56819
56820
56821
56822
# File 'lib/quickfix_fields.rb', line 56816

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

Class Method Details

.fieldObject



56813
56814
56815
# File 'lib/quickfix_fields.rb', line 56813

def PartyActionRejectReason.field
  return 2333
end