Class: Quickfix::QuoteEntryRejectReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteEntryRejectReason

Returns a new instance of QuoteEntryRejectReason.



4634
4635
4636
4637
4638
4639
4640
# File 'lib/quickfix_fields.rb', line 4634

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