adyen 0.1.23

A library for integrating with the Adyen payment provider.
Documentation
1
2
3
4
5
6
7
8
9
use crate::Currency;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Amount {
    pub value: u64,
    pub currency: Currency,
}