Class: Quickfix::PosTransType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosTransType

Returns a new instance of PosTransType.



9730
9731
9732
9733
9734
9735
9736
# File 'lib/quickfix_fields.rb', line 9730

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