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