amazon_spapi/models/app_integrations_2024_04_01/
create_notification_response.rs

1/*
2 * The Selling Partner API for third party application integrations.
3 *
4 * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
5 *
6 * The version of the OpenAPI document: 2024-04-01
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// CreateNotificationResponse : The response for the `createNotification` operation.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct CreateNotificationResponse {
17    /// The unique identifier assigned to each notification.
18    #[serde(rename = "notificationId", skip_serializing_if = "Option::is_none")]
19    pub notification_id: Option<String>,
20}
21
22impl CreateNotificationResponse {
23    /// The response for the `createNotification` operation.
24    pub fn new() -> CreateNotificationResponse {
25        CreateNotificationResponse {
26            notification_id: None,
27        }
28    }
29}
30