mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 23:55:33 +00:00
28 lines
434 B
Rust
28 lines
434 B
Rust
/*
|
|
* VRChat API Documentation
|
|
*
|
|
*
|
|
* The version of the OpenAPI document: 1.1.2
|
|
* Contact: me@ruby.js.org
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct InlineObject {
|
|
#[serde(rename = "code")]
|
|
pub code: String,
|
|
}
|
|
|
|
impl InlineObject {
|
|
pub fn new(code: String) -> InlineObject {
|
|
InlineObject {
|
|
code,
|
|
}
|
|
}
|
|
}
|
|
|
|
|