1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use peopledatalabs::{CleanLocationParams, LocationParams, PDL};

fn main() {
    let client = PDL::new();
    let location_params = LocationParams {
        location: Some("New York, NY".to_string()),
    };
    let params = CleanLocationParams {
        base_params: None,
        location_params,
        additional_params: None,
    };

    let results = client.location.clean(params);

    println!("{:#?}", results);
}