mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
37 lines
809 B
Rust
37 lines
809 B
Rust
/*
|
|
* VRChat API Documentation
|
|
*
|
|
*
|
|
* The version of the OpenAPI document: 1.3.0
|
|
* Contact: me@ruby.js.org
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct InlineObject3 {
|
|
#[serde(rename = "name")]
|
|
pub name: String,
|
|
#[serde(rename = "mimeType")]
|
|
pub mime_type: crate::models::MimeType,
|
|
#[serde(rename = "extension")]
|
|
pub extension: String,
|
|
#[serde(rename = "tags", skip_serializing_if = "Option::is_none")]
|
|
pub tags: Option<Vec<String>>,
|
|
}
|
|
|
|
impl InlineObject3 {
|
|
pub fn new(name: String, mime_type: crate::models::MimeType, extension: String) -> InlineObject3 {
|
|
InlineObject3 {
|
|
name,
|
|
mime_type,
|
|
extension,
|
|
tags: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|