Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
maririos committed Jan 30, 2021
1 parent 7fe074f commit 48cdd42
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions sdk/formrecognizer/Azure.AI.FormRecognizer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
- Renamed the model `Style` to `TextStyle`.
- Renamed the extensible enum `TextStyle` to `TextStyleName`.
- Changed object type for property `Pages` under `RecognizeContentOptions` from `IEnumerable` to `IList`.
- Changed model type for `Locale` from `string` to `FormRecognizerLocale` for `RecognizeBusinessCardsOptions`, `RecognizeInvoicesOptions`, and `RecognizeReceiptsOptions`.
- Changed model type for `Language` from `string` to `FormRecognizerLanguage` for `RecognizeContentOptions`.
- Changed model type of `Locale` from `string` to `FormRecognizerLocale` in `RecognizeBusinessCardsOptions`, `RecognizeInvoicesOptions`, and `RecognizeReceiptsOptions`.
- Changed model type of `Language` from `string` to `FormRecognizerLanguage` in `RecognizeContentOptions`.

## 3.1.0-beta.1 (2020-11-23)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public RecognizeBusinessCardsOptions()
public FormContentType? ContentType { get; set; }

/// <summary>
/// Set the locale information for the business card.
/// Sets the locale information for the business card.
/// Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US.
/// </summary>
public FormRecognizerLocale? Locale { get; set; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public RecognizeInvoicesOptions()
public FormContentType? ContentType { get; set; }

/// <summary>
/// Set the locale information for the invoice.
/// Sets the locale information for the invoice.
/// Supported locales include: en-US.
/// </summary>
public FormRecognizerLocale? Locale { get; set; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public RecognizeReceiptsOptions()
public FormContentType? ContentType { get; set; }

/// <summary>
/// Set the locale information for the receipt.
/// Sets the locale information for the receipt.
/// Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US.
/// </summary>
public FormRecognizerLocale? Locale { get; set; }
}
Expand Down

0 comments on commit 48cdd42

Please sign in to comment.