Class: Quickfix::AllocRejCode

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocRejCode

Returns a new instance of AllocRejCode.



17634
17635
17636
17637
17638
17639
17640
# File 'lib/quickfix_fields.rb', line 17634

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

Class Method Details

.fieldObject



17631
17632
17633
# File 'lib/quickfix_fields.rb', line 17631

def AllocRejCode.field
	return 88
end