-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* # This is a combination of 5 commits. parent e68ceb4 author Lakshmanan Ramu Meenal <laramume@microsoft.com> 1539635490 -0700 committer Lakshmanan Ramu Meenal <laramume@microsoft.com> 1551313811 -0800 # This is a combination of 2 commits. # This is the 1st commit message: added 2.1 preview SDK for text analytics based on PR commanets changed the number of SDK's to one # This is the commit message #1: fixed test project errors # This is the commit message #2: fixed test project errors # This is the commit message #3: fixed test project errors # This is the commit message #4: fixed the log errors * changed the version name and package notes * # This is a combination of 5 commits. # This is the 1st commit message: added SDK for version 2.1 # This is the commit message #1: resolved build failure # This is the commit message #2: resolved build failure # This is the commit message #3: resolved build failure # This is the commit message #4: resolved build failure * added SDK for version 2.1 * changed version number to 3.0.0 * updated assemblyfileversion
- Loading branch information
Showing
30 changed files
with
595 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...re.CognitiveServices.Language.TextAnalytics.Tests.DetectLanguageTests/DetectLanguage.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...soft.Azure.CognitiveServices.Language.TextAnalytics.Tests.KeyPhrasesTests/KeyPhrases.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...rosoft.Azure.CognitiveServices.Language.TextAnalytics.Tests.SentimentTests/Sentiment.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
...Language/TextAnalytics/TextAnalytics/Generated/TextAnalytics/Models/DocumentStatistics.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// <auto-generated> | ||
// 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. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.CognitiveServices.Language.TextAnalytics.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
public partial class DocumentStatistics | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the DocumentStatistics class. | ||
/// </summary> | ||
public DocumentStatistics() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the DocumentStatistics class. | ||
/// </summary> | ||
/// <param name="charactersCount">Number of text elements recognized in | ||
/// the document.</param> | ||
/// <param name="transactionsCount">Number of transactions for the | ||
/// document.</param> | ||
public DocumentStatistics(int? charactersCount = default(int?), int? transactionsCount = default(int?)) | ||
{ | ||
CharactersCount = charactersCount; | ||
TransactionsCount = transactionsCount; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets number of text elements recognized in the document. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "charactersCount")] | ||
public int? CharactersCount { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets number of transactions for the document. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "transactionsCount")] | ||
public int? TransactionsCount { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.