Class: Quickfix::CollInquiryStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollInquiryStatus

Returns a new instance of CollInquiryStatus.



12746
12747
12748
12749
12750
12751
12752
# File 'lib/quickfix_fields.rb', line 12746

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