Files
vrchatapi-rust/src/models/inline_object.rs
2021-08-31 20:01:31 +02:00

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