Skip to main content

app_store_server_library/models/
performance_test_request.rs

1use serde::{Deserialize, Serialize};
2
3/// The object you provide to a performance test request that contains the test's transaction identifier.
4///
5/// [PerformanceTestRequest](https://developer.apple.com/documentation/retentionmessaging/performancetestrequest)
6#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)]
7#[serde(rename_all = "camelCase")]
8pub struct PerformanceTestRequest {
9    /// The original transaction identifier of an In-App Purchase to use as the purchase for this test.
10    pub original_transaction_id: String,
11}