tmdb_client/models/alternative_names_list.rs
1/*
2 * API
3 *
4 * ## Welcome This is a place to put general notes and extra information, for internal use. To get started designing/documenting this API, select a version on the left. # Title No Description
5 *
6 * The version of the OpenAPI document: 3
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Debug, Serialize, Deserialize, Clone, Default)]
12pub struct AlternativeNamesList {
13 #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
14 pub id: Option<i32>,
15 #[serde(rename = "results", skip_serializing_if = "Option::is_none")]
16 pub results: Option<Vec<crate::models::AlternativenameslistResults>>,
17}