/*
* 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.1
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// BlueskyPlatformData : Bluesky post settings. Supports text posts with up to 4 images or a single video. threadItems creates a reply chain (Bluesky thread). Images exceeding 1MB are automatically compressed. Alt text supported via mediaItem properties.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BlueskyPlatformData {
/// Complete sequence of posts in a Bluesky thread. The first item becomes the root post, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first post as threadItems[0].
#[serde(rename = "threadItems", skip_serializing_if = "Option::is_none")]
pub thread_items: Option<Vec<models::TwitterPlatformDataThreadItemsInner>>,
}
impl BlueskyPlatformData {
/// Bluesky post settings. Supports text posts with up to 4 images or a single video. threadItems creates a reply chain (Bluesky thread). Images exceeding 1MB are automatically compressed. Alt text supported via mediaItem properties.
pub fn new() -> BlueskyPlatformData {
BlueskyPlatformData { thread_items: None }
}
}