radarr_api_rs/models/localization_language_resource.rs
1/*
2 * Radarr
3 *
4 * Radarr API docs
5 *
6 * The version of the OpenAPI document: 3.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct LocalizationLanguageResource {
16 #[serde(rename = "identifier", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
17 pub identifier: Option<Option<String>>,
18}
19
20impl LocalizationLanguageResource {
21 pub fn new() -> LocalizationLanguageResource {
22 LocalizationLanguageResource {
23 identifier: None,
24 }
25 }
26}
27
28