use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UserCommentResponse {
#[serde(rename = "userComment", skip_serializing_if = "Option::is_none")]
pub user_comment: Option<Box<models::UserComment>>,
#[serde(rename = "userComments", skip_serializing_if = "Option::is_none")]
pub user_comments: Option<Vec<models::UserComment>>,
}
impl UserCommentResponse {
pub fn new() -> UserCommentResponse {
UserCommentResponse {
user_comment: None,
user_comments: None,
}
}
}