...

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

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

     1  package newssearchapi
     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/newssearch"
    12  )
    13  
    14  // NewsClientAPI contains the set of methods on the NewsClient type.
    15  type NewsClientAPI interface {
    16  	Category(ctx context.Context, acceptLanguage string, userAgent string, clientID string, clientIP string, location string, countryCode string, category string, count *int32, headlineCount *int32, market string, offset *int32, originalImage *bool, safeSearch newssearch.SafeSearch, setLang string, textDecorations *bool, textFormat newssearch.TextFormat) (result newssearch.News, err error)
    17  	Search(ctx context.Context, query string, acceptLanguage string, userAgent string, clientID string, clientIP string, location string, countryCode string, count *int32, freshness newssearch.Freshness, market string, offset *int32, originalImage *bool, safeSearch newssearch.SafeSearch, setLang string, sortBy string, textDecorations *bool, textFormat newssearch.TextFormat) (result newssearch.News, err error)
    18  	Trending(ctx context.Context, acceptLanguage string, userAgent string, clientID string, clientIP string, location string, countryCode string, count *int32, market string, offset *int32, safeSearch newssearch.SafeSearch, setLang string, since *int64, sortBy string, textDecorations *bool, textFormat newssearch.TextFormat) (result newssearch.TrendingTopics, err error)
    19  }
    20  
    21  var _ NewsClientAPI = (*newssearch.NewsClient)(nil)
    22  

View as plain text