1 2 3 4 5 6 7 8 9 10 11
#[derive(Debug, Clone)] pub struct HubSpotClient { pub api_key: String, } impl HubSpotClient { pub fn new(api_key: String) -> Self { HubSpotClient { api_key } } }