kinetics 0.15.3

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub struct Request {}

#[derive(Debug, Serialize, Deserialize)]
pub struct Member {
    pub email: String,
    pub is_owner: bool,
}

#[derive(Debug, Serialize, Deserialize)]
pub struct Org {
    pub id: String,
    pub name: String,
    pub is_owner: bool,
    pub members: Vec<Member>,
}

#[derive(Debug, Serialize, Deserialize)]
pub struct Response {
    pub orgs: Vec<Org>,
}