skailar 0.0.1

Official Rust SDK for the Skailar API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Utility response types.

use serde::{Deserialize, Serialize};

/// The response from `GET /v1/ping-key`.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct PingKeyResponse {
    /// Always `"ok"` for a valid key.
    pub status: String,
    /// Identifier of the account that owns the key.
    pub user_id: String,
}