Class: Quickfix::QuoteRequestRejectReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteRequestRejectReason

Returns a new instance of QuoteRequestRejectReason.



8846
8847
8848
8849
8850
8851
8852
# File 'lib/quickfix_fields.rb', line 8846

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