package com.github.copilot.sdk.json; import java.util.List; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.databind.JsonNode; @JsonInclude(JsonInclude.Include.NON_NULL) public final class GetMessagesResponse { @JsonProperty("events") private List events; public List getEvents() { return events; } public void setEvents(List events) { this.events = events; } }