Skip to content

Commit

Permalink
[Text Analytics] Use camel case in assertion response strings (#14246)
Browse files Browse the repository at this point in the history
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 Mar 11, 2021
1 parent 75bf8a6 commit bb8f95b
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 bb8f95b

Please sign in to comment.