Class: Quickfix::PosReqID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosReqID

Returns a new instance of PosReqID.



9743
9744
9745
9746
9747
9748
9749
# File 'lib/quickfix_fields.rb', line 9743

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