app-store-server-library 4.0.1

The Rust server library for the App Store Server API, App Store Server Notifications and Advanced Commerce API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

/// A response that contains the test notification token.
///
/// [SendTestNotificationResponse](https://developer.apple.com/documentation/appstoreserverapi/sendtestnotificationresponse)
#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)]
pub struct SendTestNotificationResponse {
    /// A unique identifier for a notification test that the App Store server sends to your server.
    ///
    /// [testNotificationToken](https://developer.apple.com/documentation/appstoreserverapi/testnotificationtoken)
    #[serde(rename = "testNotificationToken")]
    pub test_notification_token: Option<String>,
}