Upgrade Rust SDK to spec 1.4.1

This commit is contained in:
Foorack
2021-10-08 12:05:31 +02:00
parent 760d14e93c
commit 0f5ba98772
117 changed files with 1221 additions and 836 deletions

30
src/models/user_exists.rs Normal file
View File

@ -0,0 +1,30 @@
/*
* VRChat API Documentation
*
*
* The version of the OpenAPI document: 1.4.1
* Contact: me@ruby.js.org
* Generated by: https://openapi-generator.tech
*/
/// UserExists : Status object representing if a queried user by username or userId exists or not. This model is primarily used by the `/auth/exists` endpoint, which in turn is used during registration. Please see the documentation on that endpoint for more information on usage.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct UserExists {
/// Status if a user exist with that username or userId.
#[serde(rename = "userExists")]
pub user_exists: bool,
}
impl UserExists {
/// Status object representing if a queried user by username or userId exists or not. This model is primarily used by the `/auth/exists` endpoint, which in turn is used during registration. Please see the documentation on that endpoint for more information on usage.
pub fn new(user_exists: bool) -> UserExists {
UserExists {
user_exists,
}
}
}