tmdb_client/models/status_code_message.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 StatusCodeMessage {
13 #[serde(rename = "status_message", skip_serializing_if = "Option::is_none")]
14 pub status_message: Option<String>,
15 #[serde(rename = "status_code", skip_serializing_if = "Option::is_none")]
16 pub status_code: Option<i32>,
17}