Class: Quickfix::AllocRejCode

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) ⇒ AllocRejCode

Returns a new instance of AllocRejCode.



1839
1840
1841
1842
1843
1844
1845
# File 'lib/quickfix_fields.rb', line 1839

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

Class Method Details

.fieldObject



1836
1837
1838
# File 'lib/quickfix_fields.rb', line 1836

def AllocRejCode.field
  return 88
end