1234567891011121314151617181920212223242526272829303132333435 |
- //! NUT-15: Multipart payments
- //!
- //! <https://github.com/cashubtc/nuts/blob/main/15.md>
- use serde::{Deserialize, Serialize};
- use super::{CurrencyUnit, PaymentMethod};
- use crate::Amount;
- /// Multi-part payment
- #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
- #[serde(rename = "lowercase")]
- #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
- pub struct Mpp {
- /// Amount
- pub amount: Amount,
- }
- /// Mpp Method Settings
- #[derive(Debug, Default, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
- #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
- pub struct MppMethodSettings {
- /// Payment Method e.g. bolt11
- pub method: PaymentMethod,
- /// Currency Unit e.g. sat
- pub unit: CurrencyUnit,
- }
- /// Mpp Settings
- #[derive(Debug, Default, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
- #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema), schema(as = nut15::Settings))]
- pub struct Settings {
- /// Method settings
- pub methods: Vec<MppMethodSettings>,
- }
|