/*
* 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};
/// ThreadsPlatformData : Up to 10 images per carousel (no videos). Videos must be H.264/AAC MP4, max 5 min. Images JPEG/PNG, max 8 MB. Use threadItems for reply chains.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ThreadsPlatformData {
/// Sequence of posts in a Threads thread (root then replies in order).
#[serde(rename = "threadItems", skip_serializing_if = "Option::is_none")]
pub thread_items: Option<Vec<models::TwitterPlatformDataThreadItemsInner>>,
}
impl ThreadsPlatformData {
/// Up to 10 images per carousel (no videos). Videos must be H.264/AAC MP4, max 5 min. Images JPEG/PNG, max 8 MB. Use threadItems for reply chains.
pub fn new() -> ThreadsPlatformData {
ThreadsPlatformData { thread_items: None }
}
}