1 package inkrecognizerapi 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/preview/cognitiveservices/v1.0/inkrecognizer" 12 ) 13 14 // ClientAPI contains the set of methods on the Client type. 15 type ClientAPI interface { 16 Recognize(ctx context.Context, body inkrecognizer.AnalysisRequest, xMsClientRequestID string) (result inkrecognizer.AnalysisResponse, err error) 17 } 18 19 var _ ClientAPI = (*inkrecognizer.Client)(nil) 20