mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
24 lines
749 B
TypeScript
24 lines
749 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { PersonalDashboardSchemaProjectOwnersItemOwnerType } from './personalDashboardSchemaProjectOwnersItemOwnerType';
|
|
|
|
export type PersonalDashboardSchemaProjectOwnersItem = {
|
|
/**
|
|
* The user's email address.
|
|
* @nullable
|
|
*/
|
|
email?: string | null;
|
|
/**
|
|
* The URL of the user's profile image.
|
|
* @nullable
|
|
*/
|
|
imageUrl?: string | null;
|
|
/** The name displayed for the user. Can be the user's name, username, or email, depending on what they have provided. */
|
|
name: string;
|
|
/** The type of the owner; will always be `user`. */
|
|
ownerType: PersonalDashboardSchemaProjectOwnersItemOwnerType;
|
|
};
|