Class: Quickfix::VerificationMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



25288
25289
25290
# File 'lib/quickfix_fields.rb', line 25288

def VerificationMethod.field
	return 1931
end