We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 062198c + 6215084 commit 2c0bce3Copy full SHA for 2c0bce3
src/main/java/com/redhat/labs/omp/models/Engagement.java
@@ -2,6 +2,8 @@
2
3
import java.util.List;
4
5
+import javax.json.bind.annotation.JsonbProperty;
6
+
7
import com.redhat.labs.omp.models.gitlab.Commit;
8
9
import lombok.AllArgsConstructor;
@@ -43,4 +45,9 @@ public class Engagement {
43
45
private List<Commit> commits;
44
46
private CreationDetails creationDetails;
47
48
+ @JsonbProperty("engagement_region")
49
+ private String region;
50
+ @JsonbProperty("engagement_type")
51
+ private String type;
52
53
}
0 commit comments