mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 23:55:33 +00:00
30 lines
826 B
Rust
30 lines
826 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
|
|
*/
|
|
|
|
/// AvatarUnityPackageUrlObject : **Deprecation:** `Object` has unknown usage/fields, and is always empty. Use normal `Url` field instead.
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct AvatarUnityPackageUrlObject {
|
|
#[serde(rename = "unityPackageUrl", skip_serializing_if = "Option::is_none")]
|
|
pub unity_package_url: Option<String>,
|
|
}
|
|
|
|
impl AvatarUnityPackageUrlObject {
|
|
/// **Deprecation:** `Object` has unknown usage/fields, and is always empty. Use normal `Url` field instead.
|
|
pub fn new() -> AvatarUnityPackageUrlObject {
|
|
AvatarUnityPackageUrlObject {
|
|
unity_package_url: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|