Skip to content

Commit

Permalink
adds JsonProperty to dto boolean property
Browse files Browse the repository at this point in the history
  • Loading branch information
a-lor-cab committed Feb 12, 2024
1 parent 9e9b2dc commit 5c27ee7
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package gov.cabinetoffice.gap.applybackend.dto.api;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
Expand All @@ -11,5 +12,6 @@
@Data
public class UpdateAttachmentDto {
private String uri;
@JsonProperty("isClean")
private Boolean isClean;
}

0 comments on commit 5c27ee7

Please sign in to comment.