smartsheet-rs 0.6.1

Async Smartsheet API implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::models::sheet::Heading;
use serde::{Deserialize, Serialize};
use serde_json::Value;

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GanttConfig {
    pub first_day_of_week: String,
    pub fiscal_year_begins: String,
    pub holidays: Vec<Value>,
    pub hours_in_working_day: f64,
    pub primary_heading: Heading,
    pub secondary_heading: Heading,
    pub working_days: Vec<String>,
}