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

/// WebhookPayloadReviewUpdated : Webhook payload for the review.updated event. Fired when the reviewer edits their text or rating, or when a reply is added (via the API or directly on the platform). Same shape as review.new. When a reply is present, review.hasReply is true and review.reply is populated.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadReviewUpdated {
    /// Stable webhook event ID
    #[serde(rename = "id")]
    pub id: String,
    #[serde(rename = "event")]
    pub event: Event,
    #[serde(rename = "review")]
    pub review: Box<models::ReviewWebhookReview>,
    #[serde(rename = "account")]
    pub account: Box<models::WebhookPayloadReviewNewAccount>,
    #[serde(rename = "timestamp")]
    pub timestamp: String,
}

impl WebhookPayloadReviewUpdated {
    /// Webhook payload for the review.updated event. Fired when the reviewer edits their text or rating, or when a reply is added (via the API or directly on the platform). Same shape as review.new. When a reply is present, review.hasReply is true and review.reply is populated.
    pub fn new(
        id: String,
        event: Event,
        review: models::ReviewWebhookReview,
        account: models::WebhookPayloadReviewNewAccount,
        timestamp: String,
    ) -> WebhookPayloadReviewUpdated {
        WebhookPayloadReviewUpdated {
            id,
            event,
            review: Box::new(review),
            account: Box::new(account),
            timestamp,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Event {
    #[serde(rename = "review.updated")]
    ReviewUpdated,
}

impl Default for Event {
    fn default() -> Event {
        Self::ReviewUpdated
    }
}