Module twitch_api2::helix::clips[][src]

This is supported on crate feature helix only.

Helix endpoints regarding clips

Examples

let client = HelixClient::new();
let req = GetClipsRequest::builder()
    .game_id("1234".to_string())
    .first(100) // max 100, 20 if left unspecified
    .build();


println!("{:?}", &client.req_get(req, &token).await?.data.get(0));

Modules

get_clips

Gets clip information by clip ID (one or more), broadcaster ID (one only), or game ID (one only). get-clips

Structs

Clip

Return Values for Get Clips

GetClipsRequest

Query Parameters for Get Clips