Skip to content

Commit

Permalink
[Text Analytics] Use camel case in assertion response strings (Azure#…
Browse files Browse the repository at this point in the history
…14246)

This change is needed to match the current service's response. The swagger is being updated in Azure/azure-rest-api-specs#13361.
  • Loading branch information
deyaaeldeen authored and vindicatesociety committed Apr 26, 2021
1 parent 7d2fc62 commit 19b1719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export type EntityAssociation = "subject" | "other";
export type EntityCertainty = "positive" | "positivePossible" | "neutralPossible" | "negativePossible" | "negative";

// @public
export type EntityConditionality = "Hypothetical" | "Conditional";
export type EntityConditionality = "hypothetical" | "conditional";

// @public
export interface EntityDataSource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ export type State =
| "cancelling"
| "partiallyCompleted";
/** Defines values for Conditionality. */
export type Conditionality = "Hypothetical" | "Conditional";
export type Conditionality = "hypothetical" | "conditional";
/** Defines values for Certainty. */
export type Certainty =
| "positive"
Expand Down

0 comments on commit 19b1719

Please sign in to comment.