appstoreserverlibrary.models.PerformanceTestResponseTimes module¶
- class appstoreserverlibrary.models.PerformanceTestResponseTimes.PerformanceTestResponseTimes(average: int | None = None, p50: int | None = None, p90: int | None = None, p95: int | None = None, p99: int | None = None)[source]¶
Bases:
objectAn object that describes test response times.
https://developer.apple.com/documentation/retentionmessaging/performancetestresponsetimes
- average: int | None¶
Average response time in milliseconds.
https://developer.apple.com/documentation/retentionmessaging/average
- p50: int | None¶
The 50th percentile response time in milliseconds.
https://developer.apple.com/documentation/retentionmessaging/p50
- p90: int | None¶
The 90th percentile response time in milliseconds.
https://developer.apple.com/documentation/retentionmessaging/p90
- p95: int | None¶
The 95th percentile response time in milliseconds.
https://developer.apple.com/documentation/retentionmessaging/p95
- p99: int | None¶
The 99th percentile response time in milliseconds.
https://developer.apple.com/documentation/retentionmessaging/p99