//! Common types shared across the Compliance Engine API.
/// Error response body returned by the Circle API on non-2xx status codes.
#[derive(Debug, Clone, serde::Deserialize)]pubstructApiErrorBody{/// Numeric error code.
pubcode:i32,
/// Human-readable error message.
pubmessage: String,
}