plaid 9.0.1

Plaid client, generated from the OpenAPI spec.
Documentation
#![allow(unused_imports)]
use plaid::model::*;
use plaid::PlaidClient;
#[tokio::main]
async fn main() {
    let client = PlaidClient::from_env();
    let search_terms = EntityWatchlistSearchTerms {
        country: Some("your country".to_owned()),
        document_number: Some("your document number".to_owned()),
        email_address: Some("your email address".to_owned()),
        entity_watchlist_program_id: "your entity watchlist program id".to_owned(),
        legal_name: "your legal name".to_owned(),
        phone_number: Some("your phone number".to_owned()),
        url: Some("your url".to_owned()),
    };
    let response = client
        .watchlist_screening_entity_create(search_terms)
        .client_user_id("your client user id")
        .await
        .unwrap();
    println!("{:#?}", response);
}