1package localsearchapi
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
9import (
10	"context"
11	"github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v1.0/localsearch"
12)
13
14// LocalClientAPI contains the set of methods on the LocalClient type.
15type LocalClientAPI interface {
16	Search(ctx context.Context, query string, acceptLanguage string, pragma string, userAgent string, clientID string, clientIP string, location string, countryCode string, market string, localCategories string, localCircularView string, localMapView string, count string, first string, responseFormat []localsearch.ResponseFormat, safeSearch localsearch.SafeSearch, setLang string) (result localsearch.SearchResponse, err error)
17}
18
19var _ LocalClientAPI = (*localsearch.LocalClient)(nil)
20