Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
25 lines
583 B
TypeScript
25 lines
583 B
TypeScript
/**
|
|
* @schema AdminUpdateUser
|
|
* type: object
|
|
* description: The properties to update in a user.
|
|
* x-schemaName: AdminUpdateUser
|
|
* properties:
|
|
* first_name:
|
|
* type: string
|
|
* title: first_name
|
|
* description: The user's first name.
|
|
* last_name:
|
|
* type: string
|
|
* title: last_name
|
|
* description: The user's last name.
|
|
* avatar_url:
|
|
* type: string
|
|
* title: avatar_url
|
|
* description: The URL of the user's avatar.
|
|
* metadata:
|
|
* type: object
|
|
* description: The user's metadata, can hold custom key-value pairs.
|
|
*
|
|
*/
|
|
|