plaid/model/other_account_subtype.rs
1use serde::{Serialize, Deserialize};
2///Valid account subtypes for other accounts. For a list containing descriptions of each subtype, see [Account schemas](https://plaid.com/docs/api/accounts/#StandaloneAccountType-other).
3#[derive(Debug, Serialize, Deserialize, Clone)]
4pub enum OtherAccountSubtype {
5 #[serde(rename = "other")]
6 Other,
7 #[serde(rename = "all")]
8 All,
9}