Tweaking module
Rust Build / Check (pull_request) Successful in 31s
Release Tagging / release (pull_request) Failing after 52s
Rust Build / Test Suite (pull_request) Successful in 30s
Rust Build / Rustfmt (pull_request) Failing after 27s
Rust Build / Clippy (pull_request) Successful in 29s
Rust Build / build (pull_request) Successful in 25s

This commit is contained in:
2026-05-30 15:45:15 -04:00
parent e126e4bc06
commit 3980acf79e
+4 -3
View File
@@ -1,15 +1,16 @@
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct MessageEventResponse { pub struct MessageEventResponse {
pub id: uuid::Uuid, pub id: uuid::Uuid,
pub scheduledMessageEventId: uuid::Uuid, pub scheduled_message_event_id: uuid::Uuid,
// Json field // Json field
pub response: String, pub response: String,
pub userId: uuid::Uuid, pub user_id: uuid::Uuid,
pub contact_id: uuid::Uuid, pub contact_id: uuid::Uuid,
pub message_id: uuid::Uuid, pub message_id: uuid::Uuid,
pub status: string, pub status: String,
#[serde(with = "time::serde::rfc3339::option")] #[serde(with = "time::serde::rfc3339::option")]
pub sent: Option<time::OffsetDateTime>, pub sent: Option<time::OffsetDateTime>,
} }