Class: Quickfix::PosReqStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosReqStatus

Returns a new instance of PosReqStatus.



9990
9991
9992
9993
9994
9995
9996
# File 'lib/quickfix_fields.rb', line 9990

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