mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-23 16:08:06 +00:00
27 lines
520 B
Rust
27 lines
520 B
Rust
/*
|
|
* VRChat API Documentation
|
|
*
|
|
*
|
|
* Contact: me@ariesclark.com
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
|
|
pub struct InfoPushDataArticle {
|
|
#[serde(rename = "content", skip_serializing_if = "Option::is_none")]
|
|
pub content: Option<Box<crate::models::InfoPushDataArticleContent>>,
|
|
}
|
|
|
|
impl InfoPushDataArticle {
|
|
pub fn new() -> InfoPushDataArticle {
|
|
InfoPushDataArticle {
|
|
content: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|