Class: Quickfix::BusinessRejectReason

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ 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