/*
* 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};
/// GoogleBusinessPlatformDataEvent : Event details. Required when topicType is EVENT. Google returns 400 if omitted for EVENT posts.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GoogleBusinessPlatformDataEvent {
/// Event name (displayed as the event heading on Google Search and Maps)
#[serde(rename = "title")]
pub title: String,
#[serde(rename = "schedule")]
pub schedule: Box<models::GoogleBusinessPlatformDataEventSchedule>,
}
impl GoogleBusinessPlatformDataEvent {
/// Event details. Required when topicType is EVENT. Google returns 400 if omitted for EVENT posts.
pub fn new(
title: String,
schedule: models::GoogleBusinessPlatformDataEventSchedule,
) -> GoogleBusinessPlatformDataEvent {
GoogleBusinessPlatformDataEvent {
title,
schedule: Box::new(schedule),
}
}
}