notra 0.1.1

Unofficial Rust SDK for the Notra API
Documentation
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GithubIntegration {
    pub id: String,
    pub display_name: String,
    pub owner: String,
    pub repo: String,
    pub default_branch: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LinearIntegration {
    pub organization_id: String,
    pub organization_name: String,
    pub team_id: String,
    pub team_name: String,
}