package textanalytics // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( "encoding/json" "github.com/Azure/go-autorest/autorest" ) // The package's fully qualified name. const fqdn = "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/textanalytics" // BatchInput ... type BatchInput struct { Documents *[]Input `json:"documents,omitempty"` } // DetectedLanguage ... type DetectedLanguage struct { // Name - Long name of a detected language (e.g. English, French). Name *string `json:"name,omitempty"` // Iso6391Name - A two letter representation of the detected language according to the ISO 639-1 standard (e.g. en, fr). Iso6391Name *string `json:"iso6391Name,omitempty"` // Score - A confidence score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true. Score *float64 `json:"score,omitempty"` } // EntitiesBatchResult ... type EntitiesBatchResult struct { autorest.Response `json:"-"` // Documents - READ-ONLY Documents *[]EntitiesBatchResultItem `json:"documents,omitempty"` // Errors - READ-ONLY Errors *[]ErrorRecord `json:"errors,omitempty"` } // MarshalJSON is the custom marshaler for EntitiesBatchResult. func (ebr EntitiesBatchResult) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) } // EntitiesBatchResultItem ... type EntitiesBatchResultItem struct { // ID - READ-ONLY; Unique document identifier. ID *string `json:"id,omitempty"` // Entities - READ-ONLY; Recognized entities in the document. Entities *[]EntityRecord `json:"entities,omitempty"` } // MarshalJSON is the custom marshaler for EntitiesBatchResultItem. func (ebri EntitiesBatchResultItem) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) } // EntityRecord ... type EntityRecord struct { // Name - Entity formal name. Name *string `json:"name,omitempty"` // Matches - READ-ONLY; List of instances this entity appears in the text. Matches *[]MatchRecord `json:"matches,omitempty"` // WikipediaLanguage - Wikipedia language for which the WikipediaId and WikipediaUrl refers to. WikipediaLanguage *string `json:"wikipediaLanguage,omitempty"` // WikipediaID - Wikipedia unique identifier of the recognized entity. WikipediaID *string `json:"wikipediaId,omitempty"` // WikipediaURL - READ-ONLY; URL for the entity's English Wikipedia page. WikipediaURL *string `json:"wikipediaUrl,omitempty"` // BingID - Bing unique identifier of the recognized entity. Use in conjunction with the Bing Entity Search API to fetch additional relevant information. BingID *string `json:"bingId,omitempty"` } // MarshalJSON is the custom marshaler for EntityRecord. func (er EntityRecord) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) if er.Name != nil { objectMap["name"] = er.Name } if er.WikipediaLanguage != nil { objectMap["wikipediaLanguage"] = er.WikipediaLanguage } if er.WikipediaID != nil { objectMap["wikipediaId"] = er.WikipediaID } if er.BingID != nil { objectMap["bingId"] = er.BingID } return json.Marshal(objectMap) } // ErrorRecord ... type ErrorRecord struct { // ID - Input document unique identifier the error refers to. ID *string `json:"id,omitempty"` // Message - Error message. Message *string `json:"message,omitempty"` } // ErrorResponse ... type ErrorResponse struct { Code *string `json:"code,omitempty"` Message *string `json:"message,omitempty"` Target *string `json:"target,omitempty"` InnerError *InternalError `json:"innerError,omitempty"` } // Input ... type Input struct { // ID - Unique, non-empty document identifier. ID *string `json:"id,omitempty"` Text *string `json:"text,omitempty"` } // InternalError ... type InternalError struct { Code *string `json:"code,omitempty"` Message *string `json:"message,omitempty"` InnerError *InternalError `json:"innerError,omitempty"` } // KeyPhraseBatchResult ... type KeyPhraseBatchResult struct { autorest.Response `json:"-"` // Documents - READ-ONLY Documents *[]KeyPhraseBatchResultItem `json:"documents,omitempty"` // Errors - READ-ONLY Errors *[]ErrorRecord `json:"errors,omitempty"` } // MarshalJSON is the custom marshaler for KeyPhraseBatchResult. func (kpbr KeyPhraseBatchResult) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) } // KeyPhraseBatchResultItem ... type KeyPhraseBatchResultItem struct { // KeyPhrases - READ-ONLY; A list of representative words or phrases. The number of key phrases returned is proportional to the number of words in the input document. KeyPhrases *[]string `json:"keyPhrases,omitempty"` // ID - READ-ONLY; Unique document identifier. ID *string `json:"id,omitempty"` } // MarshalJSON is the custom marshaler for KeyPhraseBatchResultItem. func (kpbri KeyPhraseBatchResultItem) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) } // LanguageBatchResult ... type LanguageBatchResult struct { autorest.Response `json:"-"` // Documents - READ-ONLY Documents *[]LanguageBatchResultItem `json:"documents,omitempty"` // Errors - READ-ONLY Errors *[]ErrorRecord `json:"errors,omitempty"` } // MarshalJSON is the custom marshaler for LanguageBatchResult. func (lbr LanguageBatchResult) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) } // LanguageBatchResultItem ... type LanguageBatchResultItem struct { // ID - READ-ONLY; Unique document identifier. ID *string `json:"id,omitempty"` // DetectedLanguages - READ-ONLY; A list of extracted languages. DetectedLanguages *[]DetectedLanguage `json:"detectedLanguages,omitempty"` } // MarshalJSON is the custom marshaler for LanguageBatchResultItem. func (lbri LanguageBatchResultItem) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) } // MatchRecord ... type MatchRecord struct { // Text - Entity text as appears in the request. Text *string `json:"text,omitempty"` // Offset - Start position (in Unicode characters) for the entity match text. Offset *int32 `json:"offset,omitempty"` // Length - Length (in Unicode characters) for the entity match text. Length *int32 `json:"length,omitempty"` } // MultiLanguageBatchInput ... type MultiLanguageBatchInput struct { Documents *[]MultiLanguageInput `json:"documents,omitempty"` } // MultiLanguageInput ... type MultiLanguageInput struct { // Language - This is the 2 letter ISO 639-1 representation of a language. For example, use "en" for English; "es" for Spanish etc., Language *string `json:"language,omitempty"` // ID - Unique, non-empty document identifier. ID *string `json:"id,omitempty"` Text *string `json:"text,omitempty"` } // SentimentBatchResult ... type SentimentBatchResult struct { autorest.Response `json:"-"` // Documents - READ-ONLY Documents *[]SentimentBatchResultItem `json:"documents,omitempty"` // Errors - READ-ONLY Errors *[]ErrorRecord `json:"errors,omitempty"` } // MarshalJSON is the custom marshaler for SentimentBatchResult. func (sbr SentimentBatchResult) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) } // SentimentBatchResultItem ... type SentimentBatchResultItem struct { // Score - READ-ONLY; A decimal number between 0 and 1 denoting the sentiment of the document. A score above 0.7 usually refers to a positive document while a score below 0.3 normally has a negative connotation. Mid values refer to neutral text. Score *float64 `json:"score,omitempty"` // ID - READ-ONLY; Unique document identifier. ID *string `json:"id,omitempty"` } // MarshalJSON is the custom marshaler for SentimentBatchResultItem. func (sbri SentimentBatchResultItem) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) return json.Marshal(objectMap) }