1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

use crate::objects::comment::Comment;

#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct RetrieveCommentsResponse {
    pub object: String,
    pub results: Vec<Comment>,
    pub next_cursor: Option<String>,
    pub has_more: bool,
}