zernio 0.0.421

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 SyncExternalPosts200ResponseSynced {
    /// Posts returned by the platform listing during the on-demand sync
    #[serde(rename = "postsFound", skip_serializing_if = "Option::is_none")]
    pub posts_found: Option<i32>,
    /// Posts inserted or updated in Zernio
    #[serde(rename = "postsSynced", skip_serializing_if = "Option::is_none")]
    pub posts_synced: Option<i32>,
    /// True when no live fetch ran: the post was already stored, or the account was synced within the debounce window
    #[serde(rename = "skipped", skip_serializing_if = "Option::is_none")]
    pub skipped: Option<bool>,
}

impl SyncExternalPosts200ResponseSynced {
    pub fn new() -> SyncExternalPosts200ResponseSynced {
        SyncExternalPosts200ResponseSynced {
            posts_found: None,
            posts_synced: None,
            skipped: None,
        }
    }
}