//! Utility response types.
useserde::{Deserialize, Serialize};/// The response from `GET /v1/ping-key`.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]pubstructPingKeyResponse{/// Always `"ok"` for a valid key.
pubstatus: String,
/// Identifier of the account that owns the key.
pubuser_id: String,
}