zernio 0.0.424

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 SyncExternalPosts200Response {
    #[serde(rename = "synced", skip_serializing_if = "Option::is_none")]
    pub synced: Option<Box<models::SyncExternalPosts200ResponseSynced>>,
    /// Present only when a locator (`url`/`postId`) was provided — whether the post was found.
    #[serde(rename = "found", skip_serializing_if = "Option::is_none")]
    pub found: Option<bool>,
    #[serde(
        rename = "post",
        default,
        with = "::serde_with::rust::double_option",
        skip_serializing_if = "Option::is_none"
    )]
    pub post: Option<Option<Box<models::ExternalPostSummary>>>,
    /// The account's recent external posts. Present only when no locator was provided.
    #[serde(rename = "posts", skip_serializing_if = "Option::is_none")]
    pub posts: Option<Vec<models::ExternalPostSummary>>,
}

impl SyncExternalPosts200Response {
    pub fn new() -> SyncExternalPosts200Response {
        SyncExternalPosts200Response {
            synced: None,
            found: None,
            post: None,
            posts: None,
        }
    }
}