Overview
TheResetPwdType model represents the data structure used for resetting user passwords. This model is used as the request body for the userResetPwdPost() method in the UserApi.
Properties
The user’s login ID whose password needs to be reset
The new password for the user account
Whether to also change the investor password. Default is
false.Example JSON
Usage Example
Methods
Getters
getLogin(): int- Get the login IDgetPassword(): string- Get the new passwordgetChangeInvestor(): bool- Get whether to change investor password
Setters
setLogin(int $login): self- Set the login IDsetPassword(string $password): self- Set the new passwordsetChangeInvestor(bool $changeInvestor): self- Set whether to change investor password
Security Considerations
Related
- UserApi - Use this model with
userResetPwdPost()method - User Model - User account information