@knora/api
Version:
JavaScript library that handles API requests to Knora
26 lines (25 loc) • 491 B
TypeScript
/**
* A request to update a user.
*/
export declare class UpdateUserRequest {
/**
* The email address and login name of a user.
*/
email?: string;
/**
* The user's family name.
*/
familyName?: string;
/**
* The user's given name.
*/
givenName?: string;
/**
* The ISO 639-1 code of the user's preferred language.
*/
lang?: string;
/**
* The username and login name of a user.
*/
username?: string;
}