octocrab 0.51.0

A modern, extensible GitHub API client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

use crate::models::{hooks::Hook, HookId};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub struct PingWebhookEventPayload {
    pub hook: Option<Hook>,
    pub hook_id: Option<HookId>,
    pub zen: Option<String>,
}