Class: Quickfix::SessionRejectReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SessionRejectReason

Returns a new instance of SessionRejectReason.



591
592
593
594
595
596
597
# File 'lib/quickfix_fields.rb', line 591

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