mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
* add formatting Signed-off-by: C0D3 M4513R <28912031+C0D3-M4513R@users.noreply.github.com> * Apply Changes --------- Signed-off-by: C0D3 M4513R <28912031+C0D3-M4513R@users.noreply.github.com>
23 lines
547 B
Rust
23 lines
547 B
Rust
/*
|
|
* VRChat API Documentation
|
|
*
|
|
*
|
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
use crate::models;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct InfoPushDataArticle {
|
|
#[serde(rename = "content", skip_serializing_if = "Option::is_none")]
|
|
pub content: Option<models::InfoPushDataArticleContent>,
|
|
}
|
|
|
|
impl InfoPushDataArticle {
|
|
pub fn new() -> InfoPushDataArticle {
|
|
InfoPushDataArticle { content: None }
|
|
}
|
|
}
|