Skip to content

Commit

Permalink
Add processed flag and processed error properties to DiscoveryCertifi…
Browse files Browse the repository at this point in the history
…cateDto (#403)
  • Loading branch information
klaraf755 authored Aug 23, 2024
1 parent 6429ba2 commit b2bb6c4
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,10 @@ public class DiscoveryCertificateDto {
requiredMode = Schema.RequiredMode.REQUIRED)
private boolean newlyDiscovered;

@Schema(description = "Indicator whether the discovery certificate has already been processed.", requiredMode = Schema.RequiredMode.REQUIRED)
private boolean processed;

@Schema(description = "Error message in case of failed processing of the discovery certificate.")
private String processedError;

}

0 comments on commit b2bb6c4

Please sign in to comment.