Class: Quickfix::CollInquiryID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollInquiryID

Returns a new instance of CollInquiryID.



12291
12292
12293
12294
12295
12296
12297
# File 'lib/quickfix_fields.rb', line 12291

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