Skip to content

ApiChangePasswordRequestDTO

stonepy.models.ApiChangePasswordRequestDTO.ApiChangePasswordRequestDTO

Bases: RequestModel

Request to change a user's password.

user_name class-attribute instance-attribute

user_name: str = Field(alias='UserName')

The username of the user whose password is to be changed (case sensitive) .

password class-attribute instance-attribute

password: str = Field(alias='Password', repr=False)

The user's existing password (case sensitive) .

new_password class-attribute instance-attribute

new_password: str = Field(alias='NewPassword', repr=False)

The user's new password (case sensitive) .