@@ -905,22 +905,21 @@ class BingCustomSearchConfiguration(_Model):
905905 listed in Market codes, Bing uses a best fit market code based on an internal mapping that is
906906 subject to change.
907907 :vartype market: str
908- :ivar set_lang: The language to use for user interface strings. You may specify the language
908+ :ivar set_lang: The language to use for user interface strings. You may specify the language
909909 using either a 2-letter or 4-letter code. Using 4-letter codes is preferred.
910- For a list of supported language codes, see `Bing supported languages
910+ For a list of supported language codes, see `Bing supported languages
911911 <https://learn.microsoft.com/bing/search-apis/bing-web-search/reference/market-codes#bing-supported-language-codes>`_.
912- Bing loads the localized strings if this parameter contains a valid 2-letter neutral culture
912+ Bing loads the localized strings if this parameter contains a valid 2-letter neutral culture
913913 code (for example ``fr``) or a valid 4-letter specific culture code (``fr-ca``). For example,
914914 for ``fr-ca``, Bing loads the ``fr`` neutral culture code strings.
915- If the parameter is not valid (for example, ``zh``) or Bing doesn’t support the language (for
915+ If the parameter is not valid (for example, ``zh``) or Bing doesn’t support the language (for
916916 example, ``af``, ``af-na``), Bing defaults to ``en`` (English).
917- To specify the 2-letter code, set this parameter to an ISO 639-1 language code.
918- To specify the 4-letter code, use the form ``<language>-<country/region>`` where
919- ``<language>`` is an ISO 639-1 language code (neutral culture) and ``<country/region>`` is an
920- ISO 3166 country/region (specific culture) code. For example, use ``en-US`` for United States
921- English.
922- Although optional, you should always specify the language. Typically, you set this parameter
923- to the same language specified by the market value unless the user wants the user interface
917+ To specify the 2-letter code, set this parameter to an ISO 639-1 language code.
918+ To specify the 4-letter code, use the form ``<language>-<country/region>`` where ``<language>``
919+ is an ISO 639-1 language code (neutral culture) and ``<country/region>`` is an ISO 3166
920+ country/region (specific culture) code. For example, use ``en-US`` for United States English.
921+ Although optional, you should always specify the language. Typically, you set this parameter to
922+ the same language specified by the market value unless the user wants the user interface
924923 strings displayed in a different language.
925924 :vartype set_lang: str
926925 :ivar count: The number of search results to return in the response. The default is 5 and the
@@ -959,22 +958,21 @@ class BingCustomSearchConfiguration(_Model):
959958 listed in Market codes, Bing uses a best fit market code based on an internal mapping that is
960959 subject to change."""
961960 set_lang : Optional [str ] = rest_field (visibility = ["read" , "create" , "update" , "delete" , "query" ])
962- """ The language to use for user interface strings. You may specify the language using either a
961+ """The language to use for user interface strings. You may specify the language using either a
963962 2-letter or 4-letter code. Using 4-letter codes is preferred.
964- For a list of supported language codes, see `Bing supported languages
963+ For a list of supported language codes, see `Bing supported languages
965964 <https://learn.microsoft.com/bing/search-apis/bing-web-search/reference/market-codes#bing-supported-language-codes>`_.
966- Bing loads the localized strings if this parameter contains a valid 2-letter neutral culture
965+ Bing loads the localized strings if this parameter contains a valid 2-letter neutral culture
967966 code (for example ``fr``) or a valid 4-letter specific culture code (``fr-ca``). For example,
968967 for ``fr-ca``, Bing loads the ``fr`` neutral culture code strings.
969- If the parameter is not valid (for example, ``zh``) or Bing doesn’t support the language (for
968+ If the parameter is not valid (for example, ``zh``) or Bing doesn’t support the language (for
970969 example, ``af``, ``af-na``), Bing defaults to ``en`` (English).
971- To specify the 2-letter code, set this parameter to an ISO 639-1 language code.
972- To specify the 4-letter code, use the form ``<language>-<country/region>`` where
973- ``<language>`` is an ISO 639-1 language code (neutral culture) and ``<country/region>`` is an
974- ISO 3166 country/region (specific culture) code. For example, use ``en-US`` for United States
975- English.
976- Although optional, you should always specify the language. Typically, you set this parameter
977- to the same language specified by the market value unless the user wants the user interface
970+ To specify the 2-letter code, set this parameter to an ISO 639-1 language code.
971+ To specify the 4-letter code, use the form ``<language>-<country/region>`` where ``<language>``
972+ is an ISO 639-1 language code (neutral culture) and ``<country/region>`` is an ISO 3166
973+ country/region (specific culture) code. For example, use ``en-US`` for United States English.
974+ Although optional, you should always specify the language. Typically, you set this parameter to
975+ the same language specified by the market value unless the user wants the user interface
978976 strings displayed in a different language."""
979977 count : Optional [int ] = rest_field (visibility = ["read" , "create" , "update" , "delete" , "query" ])
980978 """The number of search results to return in the response. The default is 5 and the maximum value
0 commit comments