zernio 0.0.98

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.1
 * 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 GetPostingFrequency200ResponseFrequencyInner {
    #[serde(rename = "platform", skip_serializing_if = "Option::is_none")]
    pub platform: Option<String>,
    /// Number of posts published that week
    #[serde(rename = "posts_per_week", skip_serializing_if = "Option::is_none")]
    pub posts_per_week: Option<i32>,
    /// Average engagement rate as percentage (0-100)
    #[serde(
        rename = "avg_engagement_rate",
        skip_serializing_if = "Option::is_none"
    )]
    pub avg_engagement_rate: Option<f64>,
    /// Average raw engagement (likes+comments+shares+saves)
    #[serde(rename = "avg_engagement", skip_serializing_if = "Option::is_none")]
    pub avg_engagement: Option<f64>,
    /// Number of calendar weeks observed at this frequency
    #[serde(rename = "weeks_count", skip_serializing_if = "Option::is_none")]
    pub weeks_count: Option<i32>,
}

impl GetPostingFrequency200ResponseFrequencyInner {
    pub fn new() -> GetPostingFrequency200ResponseFrequencyInner {
        GetPostingFrequency200ResponseFrequencyInner {
            platform: None,
            posts_per_week: None,
            avg_engagement_rate: None,
            avg_engagement: None,
            weeks_count: None,
        }
    }
}