app_store_server_library/primitives/
transaction_info_response.rs

1use serde::{Deserialize, Serialize};
2
3/// A response that contains signed transaction information for a single transaction.
4///
5/// [TransactionInfoResponse](https://developer.apple.com/documentation/appstoreserverapi/transactioninforesponse)
6#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)]
7pub struct TransactionInfoResponse {
8    /// A customer’s in-app purchase transaction, signed by Apple, in JSON Web Signature (JWS) format.
9    #[serde(rename = "signedTransactionInfo")]
10    pub signed_transaction_info: Option<String>,
11}