outbox_pattern_processor/
http_destination.rs1use serde::{Deserialize, Serialize};
2use sqlx::FromRow;
3use std::collections::HashMap;
4
5#[derive(Deserialize, Serialize, Debug, FromRow, Clone, PartialEq)]
6pub struct HttpDestination {
7 pub url: String,
8 pub headers: Option<HashMap<String, String>>,
9 pub method: Option<String>,
10}