vt3 0.7.3

VirusTotal REST API v3 (Public & Enterprise)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::model::{Links, Meta};
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Debug, Serialize)]
pub struct RelatedCollections {
    data: Vec<Data>,
    meta: Meta,
    links: Links,
}

#[derive(Debug, Serialize, Deserialize)]
pub struct Data {
    #[serde(rename = "type")]
    pub object_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
}