Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/checkmarx/ast/predicate/Predicate.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ public class Predicate {
String createdBy;
String createdAt;
String updatedAt;
String stateId;
Integer stateId;

@JsonCreator
public Predicate(@JsonProperty("ID") String id, @JsonProperty("SimilarityID") String similarityId,
@JsonProperty("ProjectID") String projectId, @JsonProperty("State") String state,
@JsonProperty("Severity") String severity, @JsonProperty("Comment") String comment,
@JsonProperty("CreatedBy") String createdBy, @JsonProperty("CreatedAt") String createdAt,
@JsonProperty("UpdatedAt") String updatedAt, @JsonProperty("StateId") String stateId) {
@JsonProperty("UpdatedAt") String updatedAt, @JsonProperty("StateId") Integer stateId) {
this.id = id;
this.similarityId = similarityId;
this.projectId = projectId;
Expand Down