@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
12 lines • 374 B
TypeScript
import { PasswordStrength } from './';
export interface IResetPassword {
/** New password to be set. */
newPassword?: string;
/** New password's strength indicator. */
passwordStrength?: PasswordStrength;
/** Password reset token. */
token?: string;
/** User's email address. */
email?: string;
}
//# sourceMappingURL=IResetPassword.d.ts.map