| Field | Setter Type | Getter Type | Required | Description | Example |
|---|---|---|---|---|---|
code |
@Nullable long | Optional<long> | ➖ | HTTP status code | |
msg |
@Nullable String | Optional<String> | ➖ | Response message | |
data |
List<TweetModel> | List<TweetModel> | ✔️ | Current page items (tweets and replies). | |
hasNextPage |
boolean | boolean | ✔️ | Whether another page is available. | |
nextCursor |
@Nullable String | JsonNullable<String> | ➖ | Use this cursor to fetch the next page when has_next_page is true. Supports tri-state: omit setter to leave unset, pass null to send explicit JSON null. |
1234567890 |