onspring-api-sdk-rust 0.0.1

Rust SDK for the Onspring API
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

/// Represents an Onspring application.
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct App {
  pub href: Option<String>,
  pub id: i32,
  pub name: Option<String>,
}