metriport-rust 0.1.0

This is a rust SDK for the metriport API
Documentation
1
2
3
4
5
6
7
8
9
10
use serde_derive::{Serialize, Deserialize};

#[derive(Serialize, Deserialize)]
pub struct Address {
    street: String,
    city: String,
    state: String,
    zip: String,
    // Include other fields as needed
}