/*
* 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};
/// WebhookPayloadMessageMetadataReferredProduct : WhatsApp only. The product the user is asking about. Set when an inbound text carries Meta's `context.referred_product` (the user tapped \"Message business\" on a product). Forwarded verbatim.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadMessageMetadataReferredProduct {
/// Meta catalog the product belongs to.
#[serde(rename = "catalog_id", skip_serializing_if = "Option::is_none")]
pub catalog_id: Option<String>,
/// Retailer ID (SKU) of the product being asked about.
#[serde(
rename = "product_retailer_id",
skip_serializing_if = "Option::is_none"
)]
pub product_retailer_id: Option<String>,
}
impl WebhookPayloadMessageMetadataReferredProduct {
/// WhatsApp only. The product the user is asking about. Set when an inbound text carries Meta's `context.referred_product` (the user tapped \"Message business\" on a product). Forwarded verbatim.
pub fn new() -> WebhookPayloadMessageMetadataReferredProduct {
WebhookPayloadMessageMetadataReferredProduct {
catalog_id: None,
product_retailer_id: None,
}
}
}