notion_client/endpoints/comments/retrieve/
response.rs1use serde::{Deserialize, Serialize};
2
3use crate::objects::comment::Comment;
4
5#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
6pub struct RetrieveCommentsResponse {
7 pub object: String,
8 pub results: Vec<Comment>,
9 pub next_cursor: Option<String>,
10 pub has_more: bool,
11}