Class: Quickfix::BusinessRejectReason

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

Returns a new instance of BusinessRejectReason.



4738
4739
4740
4741
4742
4743
4744
# File 'lib/quickfix_fields.rb', line 4738

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

Class Method Details

.fieldObject



4735
4736
4737
# File 'lib/quickfix_fields.rb', line 4735

def BusinessRejectReason.field
  return 380
end