wave-api 0.1.0

Typed Rust client for the Wave Accounting GraphQL API
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;

/// A created transaction (minimal fields returned by the API).
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Transaction {
    pub id: String,
}