octocrab 0.53.0

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

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub struct InstallationTargetWebhookEventPayload {
    pub account: serde_json::Value,
    pub action: String,
    pub changes: serde_json::Value,
    pub enterprise: Option<serde_json::Value>,
    pub target_type: String,
}