app_store_server_library/models/performance_test_response.rs
1use serde::{Deserialize, Serialize};
2use uuid::Uuid;
3
4use crate::models::performance_test_config::PerformanceTestConfig;
5
6/// The response from initiating a performance test.
7///
8/// [PerformanceTestResponse](https://developer.apple.com/documentation/retentionmessaging/performancetestresponse)
9#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)]
10#[serde(rename_all = "camelCase")]
11pub struct PerformanceTestResponse {
12 /// The performance test configuration object.
13 pub config: PerformanceTestConfig,
14
15 /// The performance test request identifier.
16 pub request_id: Uuid,
17}