paypal_rust/resources/
payee.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Clone, Debug, Default, Deserialize, Serialize)]
4pub struct Payee {
5    /// The email address of merchant.
6    pub email_address: String,
7
8    /// The encrypted PayPal account ID of the merchant.
9    pub merchant_id: String,
10}