1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use crate::pixiv::helper_structs::illustration::Illustration;

use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub struct RecommendedIllustration {
    contest_exists: bool,
    illusts: Vec<Illustration>,
    next_url: String,
    // TODO: Figure out the correct struct for this.
    privacy_policy: serde_json::Value,
    // TODO: Figure out the correct struct for this.
    ranking_illusts: Vec<String>,
}