mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
30 lines
544 B
Rust
30 lines
544 B
Rust
/*
|
|
* VRChat API Documentation
|
|
*
|
|
*
|
|
* Contact: me@ruby.js.org
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct InstancePlatforms {
|
|
#[serde(rename = "android")]
|
|
pub android: i32,
|
|
#[serde(rename = "standalonewindows")]
|
|
pub standalonewindows: i32,
|
|
}
|
|
|
|
impl InstancePlatforms {
|
|
pub fn new(android: i32, standalonewindows: i32) -> InstancePlatforms {
|
|
InstancePlatforms {
|
|
android,
|
|
standalonewindows,
|
|
}
|
|
}
|
|
}
|
|
|
|
|