Class: Quickfix::MatchExceptionConfirmValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MatchExceptionConfirmValue

Returns a new instance of MatchExceptionConfirmValue.



76758
76759
76760
76761
76762
76763
76764
# File 'lib/quickfix_fields.rb', line 76758

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