Class: Quickfix::SessionRejectReason

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SessionRejectReason

Returns a new instance of SessionRejectReason.



11628
11629
11630
11631
11632
11633
11634
# File 'lib/quickfix_fields.rb', line 11628

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

Class Method Details

.fieldObject



11625
11626
11627
# File 'lib/quickfix_fields.rb', line 11625

def SessionRejectReason.field
	return 373
end