Files
vrchatapi-rust/src/models/verify2_fa_result.rs
2021-10-28 20:54:23 +00:00

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,
}
}
}