forked from spotify/github-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.java
More file actions
165 lines (144 loc) · 3.34 KB
/
App.java
File metadata and controls
165 lines (144 loc) · 3.34 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*-
* -\-\-
* github-api
* --
* Copyright (C) 2016 - 2020 Spotify AB
* --
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -/-/-
*/
package com.spotify.github.v3.checks;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.spotify.github.GithubStyle;
import com.spotify.github.v3.User;
import java.time.ZonedDateTime;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import org.immutables.value.Value;
/** The interface App. */
@Value.Immutable
@GithubStyle
@JsonDeserialize(as = ImmutableApp.class)
public interface App {
/**
* The App ID.
*
* @return the ID
*/
Integer id();
/**
* The URL-friendly name of the GitHub App.
*
* @return the optional sting
*/
Optional<String> slug();
/**
* The App name
*
* @return the string
*/
String name();
/**
* The App Description.
*
* @return the string
*/
String description();
/**
* External url string.
*
* @return the string
*/
String externalUrl();
/**
* Html url string.
*
* @return the string
*/
String htmlUrl();
/**
* The date the App was created.
*
* @return the zoned date time
*/
ZonedDateTime createdAt();
/**
* The date the App was updated.
*
* @return the zoned date time
*/
ZonedDateTime updatedAt();
/**
* The permissions the installation of the app has.
*
* @see "https://developer.github.com/apps/building-github-apps/creating-github-apps-using-url
* -parameters/#github-app-permissions"
* @return the map with permissions
*/
Map<String, String> permissions();
/**
* Events list this App will consume, such as push, pull_request, etc.
*
* @return the list
*/
List<String> events();
/**
* Installation count of the App.
*
* @return the optional count
*/
Optional<Integer> installationsCount();
/**
* The client ID of the GitHub App.
*
* @return the optional client ID
*/
Optional<String> clientId();
/**
* The name of the single file the GitHub App can access (if applicable).
*
* @return the optional single file name
*/
Optional<String> singleFileName();
/**
* Whether the GitHub App has access to multiple single files.
*
* @return the optional boolean
*/
Optional<Boolean> hasMultipleSingleFiles();
/**
* The list of single file paths the GitHub App can access.
*
* @return the optional list of file paths
*/
Optional<List<String>> singleFilePaths();
/**
* The slug name of the GitHub App.
*
* @return the optional app slug
*/
Optional<String> appSlug();
/**
* The date the App was suspended.
*
* @return the optional suspended date
*/
Optional<ZonedDateTime> suspendedAt();
/**
* The user who suspended the App.
*
* @return the optional user
*/
Optional<User> suspendedBy();
}