stripe/resources/generated/
billing_details.rs

1// ======================================
2// This file was automatically generated.
3// ======================================
4
5use crate::resources::Address;
6use serde::{Deserialize, Serialize};
7
8/// The resource representing a Stripe "billing_details".
9#[derive(Clone, Debug, Default, Deserialize, Serialize)]
10pub struct BillingDetails {
11    /// Billing address.
12    pub address: Option<Address>,
13
14    /// Email address.
15    pub email: Option<String>,
16
17    /// Full name.
18    pub name: Option<String>,
19
20    /// Billing phone number (including extension).
21    pub phone: Option<String>,
22}