square_rust/api/models/objects/
customer_details.rs

1//! Customer details
2
3/// Customer details
4pub struct CustomerDetails {
5    /// Indicates whether the customer initiated the payment.
6    pub customer_initiated: Option<bool>,
7    /// Inidicates that the seller keyed in payment details on behalf of the customer. This is used to flag payment as Mail Order/Telephone Order (MOTO).
8    pub seller_keyed_in: Option<bool>,
9}