late 0.0.297

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};

/// SendInboxMessageRequestInteractiveActionOneOf : List action. `type` on the parent must be `list`.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SendInboxMessageRequestInteractiveActionOneOf {
    /// CTA label that opens the list (max ~20 chars).
    #[serde(rename = "button")]
    pub button: String,
    /// 1-10 sections. Total rows across all sections cannot exceed 10.
    #[serde(rename = "sections")]
    pub sections: Vec<models::SendInboxMessageRequestInteractiveActionOneOfSectionsInner>,
}

impl SendInboxMessageRequestInteractiveActionOneOf {
    /// List action. `type` on the parent must be `list`.
    pub fn new(
        button: String,
        sections: Vec<models::SendInboxMessageRequestInteractiveActionOneOfSectionsInner>,
    ) -> SendInboxMessageRequestInteractiveActionOneOf {
        SendInboxMessageRequestInteractiveActionOneOf { button, sections }
    }
}