Files
onspring-api-sdk-rust/src/models/app.rs
T

11 lines
233 B
Rust
Raw Normal View History

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>,
}