Class: Quickfix::EncryptedNewPasswordLen

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) ⇒ EncryptedNewPasswordLen

Returns a new instance of EncryptedNewPasswordLen.



851
852
853
854
855
856
857
# File 'lib/quickfix_fields.rb', line 851

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

Class Method Details

.fieldObject



848
849
850
# File 'lib/quickfix_fields.rb', line 848

def EncryptedNewPasswordLen.field
	return 1403
end