plaid 9.0.1

Plaid client, generated from the OpenAPI spec.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Serialize, Deserialize};
/**How Plaid should deliver the Plaid Link session to the customer. Only available to customers enabled for Link Delivery (beta). To request Link Delivery access, contact your account manager.
'sms' will deliver via SMS. Must pass `user.phone_number`.
'email' will deliver via email. Must pass `user.email_address`. In the Sandbox environment, this field will be ignored; use the Production environment to test Link Delivery instead.*/
#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum HostedLinkDeliveryMethod {
    #[serde(rename = "sms")]
    Sms,
    #[serde(rename = "email")]
    Email,
}