app_store_server_library/primitives/send_test_notification_response.rs
1use serde::{Deserialize, Serialize};
2
3/// A response that contains the test notification token.
4///
5/// [SendTestNotificationResponse](https://developer.apple.com/documentation/appstoreserverapi/sendtestnotificationresponse)
6#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)]
7pub struct SendTestNotificationResponse {
8 /// A unique identifier for a notification test that the App Store server sends to your server.
9 ///
10 /// [testNotificationToken](https://developer.apple.com/documentation/appstoreserverapi/testnotificationtoken)
11 #[serde(rename = "testNotificationToken")]
12 pub test_notification_token: Option<String>,
13}