zernio 0.0.430

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 GetAdsTimeline200Response {
    #[serde(rename = "rows", skip_serializing_if = "Option::is_none")]
    pub rows: Option<Vec<models::GetAdsTimeline200ResponseRowsInner>>,
    /// Present and true only on `202` responses: part of the requested date range is still being backfilled from the platform in the background. Retry the same request shortly; it returns 200 once the range is fully ingested.
    #[serde(rename = "backfillPending", skip_serializing_if = "Option::is_none")]
    pub backfill_pending: Option<bool>,
}

impl GetAdsTimeline200Response {
    pub fn new() -> GetAdsTimeline200Response {
        GetAdsTimeline200Response {
            rows: None,
            backfill_pending: None,
        }
    }
}