mistral_openapi_client/models/
response_error_event.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ResponseErrorEvent {
16 #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
17 pub r#type: Option<Type>,
18 #[serde(rename = "created_at", skip_serializing_if = "Option::is_none")]
19 pub created_at: Option<String>,
20 #[serde(rename = "message")]
21 pub message: String,
22 #[serde(rename = "code")]
23 pub code: i32,
24}
25
26impl ResponseErrorEvent {
27 pub fn new(message: String, code: i32) -> ResponseErrorEvent {
28 ResponseErrorEvent {
29 r#type: None,
30 created_at: None,
31 message,
32 code,
33 }
34 }
35}
36#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
38pub enum Type {
39 #[serde(rename = "conversation.response.error")]
40 ConversationResponseError,
41}
42
43impl Default for Type {
44 fn default() -> Type {
45 Self::ConversationResponseError
46 }
47}
48