integrationos-domain 8.0.0

Shared library for IntegrationOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Debug, Default, Clone, Eq, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "dummy", derive(fake::Dummy))]
#[serde(rename_all = "camelCase")]
pub struct Settings {
    pub parse_webhook_body: bool,
    pub show_secret: bool,
    pub allow_custom_events: bool,
    pub oauth: bool,
}