plaid/model/po_box_status.rs
1use serde::{Serialize, Deserialize};
2///Field describing whether the associated address is a post office box. Will be `yes` when a P.O. box is detected, `no` when Plaid confirmed the address is not a P.O. box, and `no_data` when Plaid was not able to determine if the address is a P.O. box.
3#[derive(Debug, Serialize, Deserialize, Clone)]
4pub enum PoBoxStatus {
5 #[serde(rename = "yes")]
6 Yes,
7 #[serde(rename = "no")]
8 No,
9 #[serde(rename = "no_data")]
10 NoData,
11}