zernio 0.0.441

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadPostPlatformPost {
    #[serde(rename = "id")]
    pub id: String,
    #[serde(rename = "content")]
    pub content: String,
    /// Post-level status AT FIRE TIME. May still be `publishing` if other platforms haven't terminated; check this field rather than assuming.
    #[serde(rename = "status")]
    pub status: String,
    #[serde(rename = "scheduledFor")]
    pub scheduled_for: String,
    #[serde(rename = "publishedAt", skip_serializing_if = "Option::is_none")]
    pub published_at: Option<String>,
    #[serde(rename = "platforms")]
    pub platforms: Vec<models::WebhookPayloadPostPlatformPostPlatformsInner>,
    /// The free-form `metadata` object supplied when the post was created, echoed back so you can map events onto your own records. Omitted when the post was created without it.
    #[serde(rename = "metadata", skip_serializing_if = "Option::is_none")]
    pub metadata: Option<std::collections::HashMap<String, serde_json::Value>>,
}

impl WebhookPayloadPostPlatformPost {
    pub fn new(
        id: String,
        content: String,
        status: String,
        scheduled_for: String,
        platforms: Vec<models::WebhookPayloadPostPlatformPostPlatformsInner>,
    ) -> WebhookPayloadPostPlatformPost {
        WebhookPayloadPostPlatformPost {
            id,
            content,
            status,
            scheduled_for,
            published_at: None,
            platforms,
            metadata: None,
        }
    }
}