/*
* 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 FollowCalendarEventRequest {
#[serde(rename = "isFollowing")]
pub is_following: bool,
}
impl FollowCalendarEventRequest {
pub fn new(is_following: bool) -> FollowCalendarEventRequest {
FollowCalendarEventRequest { is_following }
}
}