mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
27 lines
448 B
Rust
27 lines
448 B
Rust
/*
|
|
* VRChat API Documentation
|
|
*
|
|
*
|
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
|
|
pub struct Error {
|
|
#[serde(rename = "error", skip_serializing_if = "Option::is_none")]
|
|
pub error: Option<Box<crate::models::Response>>,
|
|
}
|
|
|
|
impl Error {
|
|
pub fn new() -> Error {
|
|
Error {
|
|
error: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|