...
1 package spellcheckapi
2
3
4
5
6
7
8
9 import (
10 "context"
11 "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v1.0/spellcheck"
12 )
13
14
15 type BaseClientAPI interface {
16 SpellCheckerMethod(ctx context.Context, textParameter string, acceptLanguage string, pragma string, userAgent string, clientID string, clientIP string, location string, actionType spellcheck.ActionType, appName string, countryCode string, clientMachineName string, docID string, market string, sessionID string, setLang string, userID string, mode spellcheck.Mode, preContextText string, postContextText string) (result spellcheck.SpellCheck, err error)
17 }
18
19 var _ BaseClientAPI = (*spellcheck.BaseClient)(nil)
20
View as plain text