1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* 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
}
}