1
2
3
4
5
6
7
8
9
use serde_derive::{Deserialize, Serialize};

/// The resource representing a Stripe transaction.
///
/// For more details see https://stripe.com/docs/api#transaction_object.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Transaction {
    // missing page in Stripe API
}