...

Source file src/github.com/Azure/azure-sdk-for-go/profiles/preview/cognitiveservices/luis/runtime/models.go

Documentation: github.com/Azure/azure-sdk-for-go/profiles/preview/cognitiveservices/luis/runtime

     1  //go:build go1.9
     2  // +build go1.9
     3  
     4  // Copyright (c) Microsoft Corporation. All rights reserved.
     5  // Licensed under the MIT License. See License.txt in the project root for license information.
     6  
     7  // This code was auto-generated by:
     8  // github.com/Azure/azure-sdk-for-go/eng/tools/profileBuilder
     9  
    10  package runtime
    11  
    12  import original "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v3.0/luis/runtime"
    13  
    14  type BaseClient = original.BaseClient
    15  type DynamicList = original.DynamicList
    16  type Error = original.Error
    17  type ErrorBody = original.ErrorBody
    18  type ExternalEntity = original.ExternalEntity
    19  type Intent = original.Intent
    20  type Prediction = original.Prediction
    21  type PredictionClient = original.PredictionClient
    22  type PredictionRequest = original.PredictionRequest
    23  type PredictionRequestOptions = original.PredictionRequestOptions
    24  type PredictionResponse = original.PredictionResponse
    25  type RequestList = original.RequestList
    26  type Sentiment = original.Sentiment
    27  
    28  func New(endpoint string) BaseClient {
    29  	return original.New(endpoint)
    30  }
    31  func NewPredictionClient(endpoint string) PredictionClient {
    32  	return original.NewPredictionClient(endpoint)
    33  }
    34  func NewWithoutDefaults(endpoint string) BaseClient {
    35  	return original.NewWithoutDefaults(endpoint)
    36  }
    37  func UserAgent() string {
    38  	return original.UserAgent() + " profiles/preview"
    39  }
    40  func Version() string {
    41  	return original.Version()
    42  }
    43  

View as plain text