use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ForgeInternalErrorResponse {
#[serde(rename = "exception_id", skip_serializing_if = "Option::is_none")]
pub exception_id: Option<Box<models::ExceptionId>>,
#[serde(rename = "message", skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
}
impl ForgeInternalErrorResponse {
pub fn new() -> ForgeInternalErrorResponse {
ForgeInternalErrorResponse {
exception_id: None,
message: None,
}
}
}