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};

/// 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
    }
}