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

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

GetClips

Return Values for Get Clips

GetClipsRequest

Query Parameters for Get Clips