| 451 | |
| 452 | #[derive(Clone, Serialize, Deserialize, Debug)] |
| 453 | pub struct ScheduledTask { |
| 454 | pub id: u64, |
| 455 | pub name: String, |
| 456 | pub plugin_id: Option<u64>, |
| 457 | |
| 458 | pub unique_key: Option<String>, |
| 459 | |
| 460 | pub data: serde_json::Value, |
| 461 | pub execute_at: DateTime<Utc>, |
| 462 | } |
| 463 | |
| 464 | impl From<ScheduledTask> for runtime_models::internal::tasks::ScheduledTask { |
| 465 | fn from(v: ScheduledTask) -> Self { |
no outgoing calls
no test coverage detected