/** * EMIL AuthService * The EMIL AuthService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ResetPasswordRequestDto */ export interface ResetPasswordRequestDto { /** * Tenant user\'s email address * @type {string} * @memberof ResetPasswordRequestDto */ 'email': string; /** * Tenant user\'s reset token. Reset token can be found in the email sent after \'forgot-password\' endpoint was called. * @type {string} * @memberof ResetPasswordRequestDto */ 'resetToken': string; /** * Tenant user\'s new password * @type {string} * @memberof ResetPasswordRequestDto */ 'password': string; }