squarecloud 0.1.1

Async Rust client for the SquareCloud API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

/// The operational status of the SquareCloud platform.
///
/// Returned by
/// [`ApiClient::service_status`](crate::ApiClient::service_status).
#[derive(Debug, Serialize, Deserialize)]
pub struct ServiceStatus {
    /// A machine-readable status indicator (e.g. `"operational"`).
    pub status: String,
    /// A human-readable description of the current platform state.
    pub message: String,
}