square_api_client/models/
digital_wallet_details.rs

1//! Model struct for DigitalWalletDetails type.
2
3use serde::{Deserialize, Serialize};
4
5use super::enums::CardPaymentDetailsStatus;
6
7/// Additional details about `WALLET` type payments.
8///
9/// Contains only non-confidential information.
10#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
11pub struct DigitalWalletDetails {
12    /// The status of the `WALLET` payment.
13    pub status: Option<CardPaymentDetailsStatus>,
14}