Class: Quickfix::PosAmtReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosAmtReason

Returns a new instance of PosAmtReason.



21768
21769
21770
21771
21772
21773
21774
# File 'lib/quickfix_fields.rb', line 21768

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