openapi_github/models/
review_custom_gates_state_required.rs

1/*
2 * GitHub's official OpenAPI spec + Octokit extension
3 *
4 * OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs
5 *
6 * The version of the OpenAPI document: 16.6.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ReviewCustomGatesStateRequired {
16    /// The name of the environment to approve or reject.
17    #[serde(rename = "environment_name")]
18    pub environment_name: String,
19    /// Whether to approve or reject deployment to the specified environments.
20    #[serde(rename = "state")]
21    pub state: State,
22    /// Optional comment to include with the review.
23    #[serde(rename = "comment", skip_serializing_if = "Option::is_none")]
24    pub comment: Option<String>,
25}
26
27impl ReviewCustomGatesStateRequired {
28    pub fn new(environment_name: String, state: State) -> ReviewCustomGatesStateRequired {
29        ReviewCustomGatesStateRequired {
30            environment_name,
31            state,
32            comment: None,
33        }
34    }
35}
36/// Whether to approve or reject deployment to the specified environments.
37#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
38pub enum State {
39    #[serde(rename = "approved")]
40    Approved,
41    #[serde(rename = "rejected")]
42    Rejected,
43}
44
45impl Default for State {
46    fn default() -> State {
47        Self::Approved
48    }
49}
50