robotech 1.7.0

Backend service implementation for the RoboTech platform, providing RESTful APIs and business logic for web applications.
1
2
3
4
5
6
7
8
9
10
11
12
use crate::api_client::api_client_config::ApiAuthStrategy;
use serde::Deserialize;
use wheel_rs::urn_utils::Urn;

#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "kebab-case")]
pub struct WebhookConfig {
    #[serde()]
    pub urn: Urn,
    #[serde(default)]
    pub auth: Option<ApiAuthStrategy>,
}