1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* ORY Hydra
*
* Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
*
* The version of the OpenAPI document: latest
*
* Generated by: https://openapi-generator.tech
*/
/// GenericError : Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct GenericError {
/// Debug contains debug information. This is usually not available and has to be enabled.
#[serde(rename = "debug", skip_serializing_if = "Option::is_none")]
pub debug: Option<String>,
/// Name is the error name.
#[serde(rename = "error")]
pub error: String,
/// Description contains further information on the nature of the error.
#[serde(rename = "error_description", skip_serializing_if = "Option::is_none")]
pub error_description: Option<String>,
/// Code represents the error status code (404, 403, 401, ...).
#[serde(rename = "status_code", skip_serializing_if = "Option::is_none")]
pub status_code: Option<i64>,
}
impl GenericError {
/// Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.
pub fn new(error: String) -> GenericError {
GenericError {
debug: None,
error,
error_description: None,
status_code: None,
}
}
}