How can I deserialize a LocalDateTime in this format 2023-01-13T08:54:25.83-03:00
using Jackson?
I am tryin to use annotations
@JsonFormat(pattern = "yyyy-MM-dd'T'hh:mm:ss", shape = JsonFormat.Shape.STRING)
@JsonProperty("created_at")
private LocalDateTime createdAt;