Class: Quickfix::CollRptRejectReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollRptRejectReason

Returns a new instance of CollRptRejectReason.



61639
61640
61641
61642
61643
61644
61645
# File 'lib/quickfix_fields.rb', line 61639

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