1 package videosearchapi
2
3
4
5
6
7
8
9 import (
10 "context"
11 "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v1.0/videosearch"
12 )
13
14
15 type VideosClientAPI interface {
16 Details(ctx context.Context, query string, acceptLanguage string, userAgent string, clientID string, clientIP string, location string, countryCode string, ID string, modules []videosearch.VideoInsightModule, market string, resolution videosearch.VideoResolution, safeSearch videosearch.SafeSearch, setLang string, textDecorations *bool, textFormat videosearch.TextFormat) (result videosearch.VideoDetails, err error)
17 Search(ctx context.Context, query string, acceptLanguage string, userAgent string, clientID string, clientIP string, location string, countryCode string, count *int32, freshness videosearch.Freshness, ID string, length videosearch.VideoLength, market string, offset *int32, pricing videosearch.VideoPricing, resolution videosearch.VideoResolution, safeSearch videosearch.SafeSearch, setLang string, textDecorations *bool, textFormat videosearch.TextFormat) (result videosearch.Videos, err error)
18 Trending(ctx context.Context, acceptLanguage string, userAgent string, clientID string, clientIP string, location string, countryCode string, market string, safeSearch videosearch.SafeSearch, setLang string, textDecorations *bool, textFormat videosearch.TextFormat) (result videosearch.TrendingVideos, err error)
19 }
20
21 var _ VideosClientAPI = (*videosearch.VideosClient)(nil)
22
View as plain text