app_store_server_library/primitives/
order_lookup_status.rs

1use serde_repr::{Deserialize_repr, Serialize_repr};
2
3/// A value that indicates whether the order ID in the request is valid for your app.
4///
5/// [OrderLookupStatus](https://developer.apple.com/documentation/appstoreserverapi/orderlookupstatus)
6#[derive(Debug, Clone, Deserialize_repr, Serialize_repr, Hash, PartialEq, Eq)]
7#[repr(u8)]
8pub enum OrderLookupStatus {
9    Valid = 0,
10    Invalid = 1,
11}