pub trait HttpAlertWrapper {
// Required methods
fn api_url(&self) -> &str;
fn header_auth_value(&self) -> &str;
fn construct_alert_body(&self, alert_description: &str) -> Value;
}
pub trait HttpAlertWrapper {
// Required methods
fn api_url(&self) -> &str;
fn header_auth_value(&self) -> &str;
fn construct_alert_body(&self, alert_description: &str) -> Value;
}