synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
31 lines (30 loc) • 770 B
TypeScript
import { UserPreference } from './UserPreference';
export declare type Settings = {
sendEmailNotifications: boolean;
markEmailedMessagesAsRead: boolean;
};
export declare type UserProfile = {
ownerId: string;
uri?: string;
etag?: string;
firstName: string;
lastName: string;
email?: string;
emails?: string[];
openIds?: string[];
userName: string;
displayName?: string;
rStudioUrl?: string;
summary?: string;
position?: string;
location?: string;
industry?: string;
company?: string;
profilePicureFileHandleId?: string;
url?: string;
teamName?: string;
notificationSettings?: Settings;
preferences?: UserPreference[];
createdOn?: string;
clientPreSignedURL?: string;
};