new module:model/UserPasswordInformation()
- Source:
Constructs a new UserPasswordInformation
.
Members
(inner) currentPassword :String
- Source:
The user's current password to be changed.
Type:
- String
(inner) email :String
- Source:
The user's email address for the associated account.
Type:
- String
(inner) forgottenPasswordInfo :module:model/ForgottenPasswordInformation
- Source:
A complex element containing up to four Question/Answer pairs for forgotten password information.
Type:
(inner) newPassword :String
- Source:
The user's new password.
Type:
- String
Methods
(static) constructFromObject(data, obj) → {module:model/UserPasswordInformation}
- Source:
Constructs a UserPasswordInformation
from a plain JavaScript object, optionally creating a new instance.
Copies all relevant properties from data
to obj
if supplied or a new instance if not.
Parameters:
Name | Type | Description |
---|---|---|
data |
Object | The plain JavaScript object bearing properties of interest. |
obj |
module:model/UserPasswordInformation | Optional instance to populate. |
Returns:
The populated UserPasswordInformation
instance.