-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathServiceVersion.java
More file actions
45 lines (37 loc) · 957 Bytes
/
ServiceVersion.java
File metadata and controls
45 lines (37 loc) · 957 Bytes
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
package com.datadog.debugger.symbol;
import com.squareup.moshi.Json;
import java.util.List;
public class ServiceVersion {
private final String service;
private final String env;
private final String version;
private final String language;
private final List<Scope> scopes;
@Json(name = "upload_id")
private final String uploadId;
@Json(name = "batch_num")
private final long batchNum;
@Json(name = "final")
private final boolean isFinal;
public ServiceVersion(
String service,
String env,
String version,
String language,
List<Scope> scopes,
String uploadId,
long batchNum,
boolean isFinal) {
this.service = service;
this.env = env;
this.version = version;
this.language = language;
this.scopes = scopes;
this.uploadId = uploadId;
this.batchNum = batchNum;
this.isFinal = isFinal;
}
public List<Scope> getScopes() {
return scopes;
}
}