| /* | |
| * | |
| * | |
| * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | |
| * | |
| * The version of the OpenAPI document: | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::{Deserialize, Serialize}; | |
| pub struct ErrorEvent { | |
| pub message: String, | |
| pub scope: String, | |
| } | |
| impl ErrorEvent { | |
| pub fn new(message: String, scope: String) -> ErrorEvent { | |
| ErrorEvent { message, scope } | |
| } | |
| } | |