/*
* Azisaba Graph API
*
* An API for connecting and sharing data across Azisaba Network.
*
* The version of the OpenAPI document: 0.0.1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdatePunishmentRequest {
#[serde(rename = "reason", skip_serializing_if = "Option::is_none")]
pub reason: Option<String>,
#[serde(rename = "seen", skip_serializing_if = "Option::is_none")]
pub seen: Option<bool>,
}
impl UpdatePunishmentRequest {
pub fn new() -> UpdatePunishmentRequest {
UpdatePunishmentRequest {
reason: None,
seen: None,
}
}
}