public List<ClipData> GetClips(int count, Boolean? isFeatured)
The number of clips to fetch
1,000 clips can be returnedtrue
Toggle featured clips behavior
If the parameter left empty or null, all clips will be retrieved, including both those flagged as featured, and those not flagged.
If isFeatured is set to true, then only clips that have is_featured set will be retrieved.
If isFeatured is set to false, then only clips that do not have is_featured set will be retrieved.
List<Twitch.Common.Models.Api.ClipData>
CPH.GetClips(count);
CPH.GetClips(count, isFeatured);