cal-core 0.2.158

Callable core lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// File: cal-core/src/agent/channel.rs

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ChannelType {
    Voice,
    Email,
    SMS,
    WhatsApp,
    RCS,
    WebChat,
    Facebook,
    Twitter,
    Instagram,
    Telegram,
    Custom(String),
}