Class: Quickfix::EncryptedNewPassword

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncryptedNewPassword

Returns a new instance of EncryptedNewPassword.



4140
4141
4142
4143
4144
4145
4146
# File 'lib/quickfix_fields.rb', line 4140

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

Class Method Details

.fieldObject



4137
4138
4139
# File 'lib/quickfix_fields.rb', line 4137

def EncryptedNewPassword.field
	return 1404
end