Class: Quickfix::EncryptedPassword

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncryptedPassword

Returns a new instance of EncryptedPassword.



16048
16049
16050
16051
16052
16053
16054
# File 'lib/quickfix_fields.rb', line 16048

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

Class Method Details

.fieldObject



16045
16046
16047
# File 'lib/quickfix_fields.rb', line 16045

def EncryptedPassword.field
	return 1402
end