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
/*
* 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};
/// WebhookPayloadPostPlatformPlatform : The specific platform that just transitioned to a terminal state.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadPostPlatformPlatform {
/// Platform name (e.g. `twitter`, `tiktok`, `instagram`).
#[serde(rename = "name")]
pub name: String,
/// Terminal status this event fires on. Matches the event suffix.
#[serde(rename = "status")]
pub status: Status,
/// Platform-native post id. Present on `published`, absent on `failed`.
#[serde(rename = "platformPostId", skip_serializing_if = "Option::is_none")]
pub platform_post_id: Option<String>,
/// Public URL to the platform-side post. Present on `published` (when the platform exposes one and it is not a draft).
#[serde(rename = "publishedUrl", skip_serializing_if = "Option::is_none")]
pub published_url: Option<String>,
/// Error message from the platform. Present on `failed`, absent on `published`.
#[serde(rename = "error", skip_serializing_if = "Option::is_none")]
pub error: Option<String>,
}
impl WebhookPayloadPostPlatformPlatform {
/// The specific platform that just transitioned to a terminal state.
pub fn new(name: String, status: Status) -> WebhookPayloadPostPlatformPlatform {
WebhookPayloadPostPlatformPlatform {
name,
status,
platform_post_id: None,
published_url: None,
error: None,
}
}
}
/// Terminal status this event fires on. Matches the event suffix.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Status {
#[serde(rename = "published")]
Published,
#[serde(rename = "failed")]
Failed,
}
impl Default for Status {
fn default() -> Status {
Self::Published
}
}