smartsheet-rs 0.6.1

Async Smartsheet API implementation in Rust
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UserSettings {
    pub critical_path_enabled: bool,
    pub display_summary_tasks: bool,
}