/*
* 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};
/// WebhookCheckRunRequestedActionRequestedAction : The action requested by the user.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookCheckRunRequestedActionRequestedAction {
/// The integrator reference of the action requested by the user.
#[serde(rename = "identifier", skip_serializing_if = "Option::is_none")]
pub identifier: Option<String>,
}
impl WebhookCheckRunRequestedActionRequestedAction {
/// The action requested by the user.
pub fn new() -> WebhookCheckRunRequestedActionRequestedAction {
WebhookCheckRunRequestedActionRequestedAction {
identifier: None,
}
}
}