late 0.0.297

API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
Documentation
/*
 * 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};

/// WebhookPayloadPostPlatform : Webhook payload for the per-platform terminal events `post.platform.published` and `post.platform.failed`. Fires once per platform target inside a post as that platform reaches a terminal state (published or permanent failure). The `post` envelope mirrors the shape of `WebhookPayloadPost` so consumers can reuse rendering logic; the `platform` block identifies which specific platform transitioned; the `account` block identifies the connected social account behind that platform-write.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadPostPlatform {
    /// Stable webhook event ID.
    #[serde(rename = "id")]
    pub id: String,
    #[serde(rename = "event")]
    pub event: Event,
    #[serde(rename = "post")]
    pub post: Box<models::WebhookPayloadPostPlatformPost>,
    #[serde(rename = "platform")]
    pub platform: Box<models::WebhookPayloadPostPlatformPlatform>,
    #[serde(rename = "account")]
    pub account: Box<models::WebhookPayloadPostPlatformAccount>,
    #[serde(rename = "timestamp")]
    pub timestamp: String,
}

impl WebhookPayloadPostPlatform {
    /// Webhook payload for the per-platform terminal events `post.platform.published` and `post.platform.failed`. Fires once per platform target inside a post as that platform reaches a terminal state (published or permanent failure). The `post` envelope mirrors the shape of `WebhookPayloadPost` so consumers can reuse rendering logic; the `platform` block identifies which specific platform transitioned; the `account` block identifies the connected social account behind that platform-write.
    pub fn new(
        id: String,
        event: Event,
        post: models::WebhookPayloadPostPlatformPost,
        platform: models::WebhookPayloadPostPlatformPlatform,
        account: models::WebhookPayloadPostPlatformAccount,
        timestamp: String,
    ) -> WebhookPayloadPostPlatform {
        WebhookPayloadPostPlatform {
            id,
            event,
            post: Box::new(post),
            platform: Box::new(platform),
            account: Box::new(account),
            timestamp,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Event {
    #[serde(rename = "post.platform.published")]
    PostPlatformPublished,
    #[serde(rename = "post.platform.failed")]
    PostPlatformFailed,
}

impl Default for Event {
    fn default() -> Event {
        Self::PostPlatformPublished
    }
}