Skip to content

Instantly share code, notes, and snippets.

@alexandre-jacquot-ptl
Created May 23, 2021 13:17
Show Gist options
  • Save alexandre-jacquot-ptl/a590832d40c50b11dda99267a8026942 to your computer and use it in GitHub Desktop.
Save alexandre-jacquot-ptl/a590832d40c50b11dda99267a8026942 to your computer and use it in GitHub Desktop.
r2dbc ItemPatchResource
@Data
@Accessors(chain = true)
public class ItemPatchResource {
private Optional<@NotBlank @Size(max=4000) String> description;
private Optional<@NotNull ItemStatus> status;
private Optional<Long> assigneeId;
private Optional<Set<Long>> tagIds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment