webhook-gateway 2.17.2

A service to ingress github event
Documentation
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize)]
pub struct Owner {
    login: String,
    id: u64,
    node_id: String,
    avatar_url: String,
    gravatar_id: String,
    url: String,
    html_url: String,
    followers_url: String,
    following_url: String,
    gists_url: String,
    starred_url: String,
    subscriptions_url: String,
    organizations_url: String,
    repos_url: String,
    events_url: String,
    received_events_url: String,
    #[serde(rename = "type")]
    _type: String,
    site_admin: bool,
    ldap_dn: String,
}