Skip to content

wuzi/ittv_sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ITTV SDK

A Rust SDK for interacting with the ITTV API.

Installation

Add the following to your Cargo.toml file:

[dependencies]
ittv_sdk = "0.1"

Usage

use ittv_sdk::{Client, NewCustomer};

#[tokio::main]
async fn main() {
    let client = Client::new("your_api_key");
    
    let customer = NewCustomer {
        name: "John Doe",
        // ...
    };

    let response = client
        .create_customer(customer)
        .await
        .unwrap();

    println!("{:?}", response);
}

Check the documentation for more examples.

About

Rust SDK to interact with ITTV API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages