@@ -95,9 +95,10 @@ def begin_recognize_receipts(self, receipt, **kwargs):
9595 :type receipt: bytes or IO[bytes]
9696 :keyword bool include_text_content:
9797 Whether or not to include text elements such as lines and words in addition to form fields.
98- :keyword str content_type: Media type of the body sent to the API. Content-type is
98+ :keyword content_type: Media type of the body sent to the API. Content-type is
9999 auto-detected, but can be overridden by passing this keyword argument. For options,
100100 see :class:`~azure.ai.formrecognizer.FormContentType`.
101+ :paramtype: str or ~azure.ai.formrecognizer.FormContentType
101102 :keyword int polling_interval: Waiting time between two polls for LRO operations
102103 if no Retry-After header is present. Defaults to 5 seconds.
103104 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
@@ -197,9 +198,10 @@ def begin_recognize_content(self, form, **kwargs):
197198
198199 :param form: JPEG, PNG, PDF and TIFF type file stream or bytes.
199200 :type form: bytes or IO[bytes]
200- :keyword str content_type: Media type of the body sent to the API. Content-type is
201+ :keyword content_type: Media type of the body sent to the API. Content-type is
201202 auto-detected, but can be overridden by passing this keyword argument. For options,
202203 see :class:`~azure.ai.formrecognizer.FormContentType`.
204+ :paramtype: str or ~azure.ai.formrecognizer.FormContentType
203205 :keyword int polling_interval: Waiting time between two polls for LRO operations
204206 if no Retry-After header is present. Defaults to 5 seconds.
205207 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
@@ -279,9 +281,10 @@ def begin_recognize_custom_forms(self, model_id, form, **kwargs):
279281 :type form: bytes or IO[bytes]
280282 :keyword bool include_text_content:
281283 Whether or not to include text elements such as lines and words in addition to form fields.
282- :keyword str content_type: Media type of the body sent to the API. Content-type is
284+ :keyword content_type: Media type of the body sent to the API. Content-type is
283285 auto-detected, but can be overridden by passing this keyword argument. For options,
284286 see :class:`~azure.ai.formrecognizer.FormContentType`.
287+ :paramtype: str or ~azure.ai.formrecognizer.FormContentType
285288 :keyword int polling_interval: Waiting time between two polls for LRO operations
286289 if no Retry-After header is present. Defaults to 5 seconds.
287290 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
0 commit comments