mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
34 lines
831 B
Rust
34 lines
831 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 InlineObject9 {
|
|
#[serde(rename = "displayName", skip_serializing_if = "Option::is_none")]
|
|
pub display_name: Option<String>,
|
|
#[serde(rename = "visibility", skip_serializing_if = "Option::is_none")]
|
|
pub visibility: Option<crate::models::FavoriteGroupVisibility>,
|
|
/// Tags on FavoriteGroups are believed to do nothing.
|
|
#[serde(rename = "tags", skip_serializing_if = "Option::is_none")]
|
|
pub tags: Option<Vec<String>>,
|
|
}
|
|
|
|
impl InlineObject9 {
|
|
pub fn new() -> InlineObject9 {
|
|
InlineObject9 {
|
|
display_name: None,
|
|
visibility: None,
|
|
tags: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|