32 lines
742 B
Rust
32 lines
742 B
Rust
/*
|
|
* Django Recipes
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 1.4.5
|
|
*
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
|
|
pub struct MealPlanRecipeKeywordsInner {
|
|
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
|
pub id: Option<i32>,
|
|
#[serde(rename = "label", skip_serializing_if = "Option::is_none")]
|
|
pub label: Option<String>,
|
|
}
|
|
|
|
impl MealPlanRecipeKeywordsInner {
|
|
pub fn new() -> MealPlanRecipeKeywordsInner {
|
|
MealPlanRecipeKeywordsInner {
|
|
id: None,
|
|
label: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|