UNPKG

585 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type UsersIdentityResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 provided?: string;
7 team?: Team;
8 user?: User;
9 warning?: string;
10};
11export interface Team {
12 id?: string;
13 name?: string;
14}
15export interface User {
16 email?: string;
17 id?: string;
18 image_192?: string;
19 image_24?: string;
20 image_32?: string;
21 image_48?: string;
22 image_512?: string;
23 image_72?: string;
24 name?: string;
25}
26//# sourceMappingURL=UsersIdentityResponse.d.ts.map
\No newline at end of file