/*
* GitHub's official OpenAPI spec + Octokit extension
*
* OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs
*
* The version of the OpenAPI document: 16.6.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct IssuesUpdateLabelRequest {
/// The new name of the label. Emoji can be added to label names, using either native emoji or colon-style markup. For example, typing `:strawberry:` will render the emoji . For a full list of available emoji and codes, see \"[Emoji cheat sheet](https://github.com/ikatyang/emoji-cheat-sheet).\"
#[serde(rename = "new_name", skip_serializing_if = "Option::is_none")]
pub new_name: Option<String>,
/// The [hexadecimal color code](http://www.color-hex.com/) for the label, without the leading `#`.
#[serde(rename = "color", skip_serializing_if = "Option::is_none")]
pub color: Option<String>,
/// A short description of the label. Must be 100 characters or fewer.
#[serde(rename = "description", skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
}
impl IssuesUpdateLabelRequest {
pub fn new() -> IssuesUpdateLabelRequest {
IssuesUpdateLabelRequest {
new_name: None,
color: None,
description: None,
}
}
}