nut15.rs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //! NUT-15: Multipart payments
  2. //!
  3. //! <https://github.com/cashubtc/nuts/blob/main/15.md>
  4. use serde::{Deserialize, Serialize};
  5. use super::{CurrencyUnit, PaymentMethod};
  6. use crate::Amount;
  7. /// Multi-part payment
  8. #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
  9. #[serde(rename = "lowercase")]
  10. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  11. pub struct Mpp {
  12. /// Amount
  13. pub amount: Amount,
  14. }
  15. /// Mpp Method Settings
  16. #[derive(Debug, Default, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
  17. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  18. pub struct MppMethodSettings {
  19. /// Payment Method e.g. bolt11
  20. pub method: PaymentMethod,
  21. /// Currency Unit e.g. sat
  22. pub unit: CurrencyUnit,
  23. }
  24. /// Mpp Settings
  25. #[derive(Debug, Default, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
  26. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema), schema(as = nut15::Settings))]
  27. pub struct Settings {
  28. /// Method settings
  29. pub methods: Vec<MppMethodSettings>,
  30. }