1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.4
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// WebhookPayloadConversationStarted : Fired once when a new conversation begins, in either direction. A conversation starts the first time an account and a contact exchange a message on any DM platform (Instagram, Messenger/Facebook, Telegram, WhatsApp, Twitter, Reddit, Bluesky). Platform-agnostic — one subscription covers every DM platform.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadConversationStarted {
/// Stable webhook event ID
#[serde(rename = "id")]
pub id: String,
#[serde(rename = "event")]
pub event: Event,
#[serde(rename = "conversation")]
pub conversation: Box<models::WebhookPayloadConversationStartedConversation>,
#[serde(rename = "account")]
pub account: Box<models::InboxWebhookAccount>,
/// When the conversation document was created.
#[serde(rename = "startedAt")]
pub started_at: String,
#[serde(rename = "timestamp")]
pub timestamp: String,
}
impl WebhookPayloadConversationStarted {
/// Fired once when a new conversation begins, in either direction. A conversation starts the first time an account and a contact exchange a message on any DM platform (Instagram, Messenger/Facebook, Telegram, WhatsApp, Twitter, Reddit, Bluesky). Platform-agnostic — one subscription covers every DM platform.
pub fn new(
id: String,
event: Event,
conversation: models::WebhookPayloadConversationStartedConversation,
account: models::InboxWebhookAccount,
started_at: String,
timestamp: String,
) -> WebhookPayloadConversationStarted {
WebhookPayloadConversationStarted {
id,
event,
conversation: Box::new(conversation),
account: Box::new(account),
started_at,
timestamp,
}
}
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Event {
#[serde(rename = "conversation.started")]
ConversationStarted,
}
impl Default for Event {
fn default() -> Event {
Self::ConversationStarted
}
}