tmdb_client/models/
session_response.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 SessionResponse {
13    #[serde(rename = "success", skip_serializing_if = "Option::is_none")]
14    pub success: Option<bool>,
15    #[serde(rename = "session_id", skip_serializing_if = "Option::is_none")]
16    pub session_id: Option<String>,
17}