mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
27 lines
421 B
Rust
27 lines
421 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 Verify2FaResult {
|
|
#[serde(rename = "verified")]
|
|
pub verified: bool,
|
|
}
|
|
|
|
impl Verify2FaResult {
|
|
pub fn new(verified: bool) -> Verify2FaResult {
|
|
Verify2FaResult {
|
|
verified,
|
|
}
|
|
}
|
|
}
|
|
|
|
|