...

Source file src/github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v1.0/videosearch/videosearchapi/interfaces.go

Documentation: github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v1.0/videosearch/videosearchapi

     1  package videosearchapi
     2  
     3  // Copyright (c) Microsoft Corporation. All rights reserved.
     4  // Licensed under the MIT License. See License.txt in the project root for license information.
     5  //
     6  // Code generated by Microsoft (R) AutoRest Code Generator.
     7  // Changes may cause incorrect behavior and will be lost if the code is regenerated.
     8  
     9  import (
    10  	"context"
    11  	"github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v1.0/videosearch"
    12  )
    13  
    14  // VideosClientAPI contains the set of methods on the VideosClient type.
    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