Skip to main content

height-app-api > EnabledUserObject

EnabledUserObject type

Signature:

export type EnabledUserObject = {
id: string;
model: 'user';
state: 'enabled' | 'invited';
email: string;
username: string;
firstname: string;
lastname: string;
access: 'member' | 'guest' | 'anonymous';
createdAt: string;
pictureUrl?: string | null;
};