nylas 0.0.8

The non-official Rust SDK for the Nylas API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

/// Struct representing an Nylas account.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Account {
    pub id: String,
    pub object: String,
    pub account_id: String,
    pub name: String,
    pub provider: String,
    pub organization_unit: String,
    pub sync_state: String,
    pub linked_at: i32,
    pub email_address: String,
}