Files
vrchatapi-rust/src/models/inline_response_200_5.rs
2021-10-08 12:05:31 +02:00

31 lines
572 B
Rust

/*
* VRChat API Documentation
*
*
* The version of the OpenAPI document: 1.4.1
* Contact: me@ruby.js.org
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct InlineResponse2005 {
#[serde(rename = "id")]
pub id: String,
#[serde(rename = "metadata")]
pub metadata: serde_json::Value,
}
impl InlineResponse2005 {
pub fn new(id: String, metadata: serde_json::Value) -> InlineResponse2005 {
InlineResponse2005 {
id,
metadata,
}
}
}