mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-21 13:47:39 +02:00
16 lines
533 B
TypeScript
16 lines
533 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { PersonalDashboardProjectDetailsSchemaOwnersOneOfItemAnyOfOwnerType } from './personalDashboardProjectDetailsSchemaOwnersOneOfItemAnyOfOwnerType';
|
|
|
|
export type PersonalDashboardProjectDetailsSchemaOwnersOneOfItemAnyOf = {
|
|
/** @nullable */
|
|
email?: string | null;
|
|
/** @nullable */
|
|
imageUrl?: string | null;
|
|
name: string;
|
|
ownerType: PersonalDashboardProjectDetailsSchemaOwnersOneOfItemAnyOfOwnerType;
|
|
};
|