ulule 1.0.0

API bindings for the Ulule v1 HTTP API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

/// RequestError is the error format returned by Ulule API.
/// [{"fieldNames":["tag_id"],"classification":"ValueError","message":"Must be an int64"}]
#[derive(Debug, Serialize, Deserialize)]
pub struct RequestError {
    #[serde(alias = "fieldNames")]
    pub field_names: Vec<String>,
    pub message: String,
    pub classification: String,
}