Class: Quickfix::SessionRejectReason

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



588
589
590
# File 'lib/quickfix_fields.rb', line 588

def SessionRejectReason.field
	return 373
end