octopush/crates/gitea_raw_client/src/models/create_label_option.rs
Kasper Juul Hermansen 991861db99
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Rewrite rust (#38)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: #38
2022-11-27 11:21:35 +00:00

37 lines
834 B
Rust

/*
* Gitea API.
*
* This documentation describes the Gitea API.
*
* The version of the OpenAPI document: 1.17.3
*
* Generated by: https://openapi-generator.tech
*/
/// CreateLabelOption : CreateLabelOption options for creating a label
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct CreateLabelOption {
#[serde(rename = "color")]
pub color: String,
#[serde(rename = "description", skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(rename = "name")]
pub name: String,
}
impl CreateLabelOption {
/// CreateLabelOption options for creating a label
pub fn new(color: String, name: String) -> CreateLabelOption {
CreateLabelOption {
color,
description: None,
name,
}
}
}