This interface defines the structure of the request body used when updating an existing User.
export interface UpdateUserRequest {
    username?: string;
    first_name?: string;
    last_name?: string;
}

Properties

  • username (string, optional): The updated username of the user.
  • first_name (string, optional): The updated first name of the user.
  • last_name (string, optional): The updated last name of the user.