app-store-server-library 4.0.1

The Rust server library for the App Store Server API, App Store Server Notifications and Advanced Commerce API
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)]
pub enum TransactionReason {
    #[serde(rename = "PURCHASE")]
    Purchase,
    #[serde(rename = "RENEWAL")]
    Renewal,
}