-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSimpleUser.ts
98 lines (96 loc) · 1.9 KB
/
SimpleUser.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* eslint-disable */
// This code is autogenerated using @harnessio/oats-cli.
// Please do not modify this code directly.
/**
* A GitHub user.
*/
export interface SimpleUser {
/**
* @format uri
* @example "https://github.com/images/error/octocat_happy.gif"
*/
avatar_url: string;
email?: string | null;
/**
* @example "https://api.github.com/users/octocat/events{/privacy}"
*/
events_url: string;
/**
* @format uri
* @example "https://api.github.com/users/octocat/followers"
*/
followers_url: string;
/**
* @example "https://api.github.com/users/octocat/following{/other_user}"
*/
following_url: string;
/**
* @example "https://api.github.com/users/octocat/gists{/gist_id}"
*/
gists_url: string;
/**
* @example "41d064eb2195891e12d0413f63227ea7"
*/
gravatar_id: string | null;
/**
* @format uri
* @example "https://github.com/octocat"
*/
html_url: string;
/**
* @format int64
* @example 1
*/
id: number;
/**
* @example "octocat"
*/
login: string;
name?: string | null;
/**
* @example "MDQ6VXNlcjE="
*/
node_id: string;
/**
* @format uri
* @example "https://api.github.com/users/octocat/orgs"
*/
organizations_url: string;
/**
* @format uri
* @example "https://api.github.com/users/octocat/received_events"
*/
received_events_url: string;
/**
* @format uri
* @example "https://api.github.com/users/octocat/repos"
*/
repos_url: string;
site_admin: boolean;
/**
* @example "\"2020-07-09T00:17:55Z\""
*/
starred_at?: string;
/**
* @example "https://api.github.com/users/octocat/starred{/owner}{/repo}"
*/
starred_url: string;
/**
* @format uri
* @example "https://api.github.com/users/octocat/subscriptions"
*/
subscriptions_url: string;
/**
* @example "User"
*/
type: string;
/**
* @format uri
* @example "https://api.github.com/users/octocat"
*/
url: string;
/**
* @example "public"
*/
user_view_type?: string;
}