27 lines
549 B
TypeScript
27 lines
549 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/* Code generated by ng-openapi-gen DO NOT EDIT. */
|
|
|
|
export interface EditPasswordDto {
|
|
/**
|
|
* The unique identifier for the user
|
|
*/
|
|
id: number;
|
|
|
|
/**
|
|
* The new password for the account
|
|
* The password must be at least 8 characters long, containing at least one lowercase letter, one uppercase letter, one number, and one special character
|
|
*/
|
|
password: string;
|
|
|
|
/**
|
|
* The verification token
|
|
*/
|
|
token: string;
|
|
|
|
/**
|
|
* The username of the account
|
|
*/
|
|
username: string;
|
|
}
|