/*
* 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 PrintFiles {
#[serde(rename = "fileId", skip_serializing_if = "Option::is_none")]
pub file_id: Option<String>,
/// Link to file, e.g. https://api.vrchat.cloud/api/1/file/file_66fe782d-f2bd-4462-9761-1d766d7b2b26/1/file
#[serde(rename = "image", skip_serializing_if = "Option::is_none")]
pub image: Option<String>,
}
impl PrintFiles {
pub fn new() -> PrintFiles {
PrintFiles {
file_id: None,
image: None,
}
}
}