29 lines
4.7 KiB
Rust
29 lines
4.7 KiB
Rust
/*
|
|
* Fur Affinity API
|
|
*
|
|
* [](https://github.com/FurryCoders/furaffinity-api) [](https://github.com/FurryCoders/furaffinity-api/actions/workflows/test.yml) [](https://pypi.org/project/faapi/3.11.6) [](/robots.json) [](/docs) [](/redoc) Use the Fur Affinity API badge for your projects! [](https://furaffinity-api.herokuapp.com/badge/svg) _The badge is provided via [Shields.io](https://shields.io/)._
|
|
*
|
|
* The version of the OpenAPI document: 1.5.5
|
|
*
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
use crate::models;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
/// Error : Error response
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct Error {
|
|
#[serde(rename = "detail", deserialize_with = "Option::deserialize")]
|
|
pub detail: Option<Box<models::Detail>>,
|
|
}
|
|
|
|
impl Error {
|
|
/// Error response
|
|
pub fn new(detail: Option<models::Detail>) -> Error {
|
|
Error {
|
|
detail: if let Some(x) = detail {Some(Box::new(x))} else {None},
|
|
}
|
|
}
|
|
}
|
|
|