Class: Quickfix::VerificationMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ VerificationMethod

Returns a new instance of VerificationMethod.



25291
25292
25293
25294
25295
25296
25297
# File 'lib/quickfix_fields.rb', line 25291

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