in src/main/java/com/spotify/github/v3/clients/GitHubClient.java [137:153]
private GitHubClient(
final OkHttpClient client,
final URI baseUrl,
final URI graphqlUrl,
final String accessToken,
final byte[] privateKey,
final Integer appId,
final Integer installationId) {
this.baseUrl = baseUrl;
this.graphqlUrl = Optional.ofNullable(graphqlUrl);
this.token = accessToken;
this.client = client;
this.privateKey = privateKey;
this.appId = appId;
this.installationId = installationId;
this.installationTokens = new ConcurrentHashMap<>();
}