@jellyfin/sdk
    Preparing search index...

    Interface UpdateUserPassword

    The update user password request body.

    UpdateUserPassword

    interface UpdateUserPassword {
        CurrentPassword?: null | string;
        CurrentPw?: null | string;
        NewPw?: null | string;
        ResetPassword?: boolean;
    }
    Index

    Properties

    CurrentPassword?: null | string

    Gets or sets the current sha1-hashed password.

    UpdateUserPassword

    CurrentPw?: null | string

    Gets or sets the current plain text password.

    UpdateUserPassword

    NewPw?: null | string

    Gets or sets the new plain text password.

    UpdateUserPassword

    ResetPassword?: boolean

    Gets or sets a value indicating whether to reset the password.

    UpdateUserPassword