Class: Quickfix::SecondaryQuoteID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryQuoteID

Returns a new instance of SecondaryQuoteID.



22899
22900
22901
22902
22903
22904
22905
# File 'lib/quickfix_fields.rb', line 22899

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