Class: Quickfix::PosReqType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosReqType

Returns a new instance of PosReqType.



9925
9926
9927
9928
9929
9930
9931
# File 'lib/quickfix_fields.rb', line 9925

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