You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**registration_time** | **datetime** | The date and time when user registered and consented to sharing data. Automatically set by server when user uploads registration. | [readonly]
10
-
**language_iso** | **str** | Language setting of app. 2-digit ISO-639-1 language code. | [optional]
10
+
**locale** | **str** | The locale code representing the language preference selected by the user for displaying the interface text. Enter the locale following the BCP 47 standard in 'language' or 'language-region' format (e.g., 'en' for English, 'en-US' for English (United States), 'fr' for French). The language is a two-letter ISO 639-1 code, and the region is an optional two-letter ISO 3166-1 alpha-2 code. | [optional]
11
+
**language_iso** | **str** | ISO 639-1 code | [readonly]
11
12
**score** | **int** | Global XP Score. This field is updated whenever the user asks for the score, and is only stored here. The content must equal score_v2_adult + score_v2_bite + score_v2_site | [readonly]
12
13
**last_score_update** | **datetime** | Last time score was updated | [readonly]
**device_token** | **str** | Device token, used in messaging. Must be supplied by the client | [optional]
9
-
**language_iso** | **str** | Language setting of app. 2-digit ISO-639-1 language code. | [optional]
8
+
**locale** | **str** | The locale code representing the language preference selected by the user for displaying the interface text. Enter the locale following the BCP 47 standard in 'language' or 'language-region' format (e.g., 'en' for English, 'en-US' for English (United States), 'fr' for French). The language is a two-letter ISO 639-1 code, and the region is an optional two-letter ISO 3166-1 alpha-2 code. | [optional]
**manufacturer** | **str** | Manufacturer of device from which this report was submitted. | [optional]
9
-
**model** | **str** | Model of device from which this report was submitted. | [optional]
10
-
**os** | **str** | Operating system of device from which this report was submitted. | [optional]
11
-
**os_version** | **str** | Operating system version of device from which this report was submitted. | [optional]
12
-
**os_language** | **str** | Language setting of operating system on device from which this report was submitted. 2-digit ISO-639-1 language code. | [optional]
**name** | **str** | Operating system of device from which this report was submitted. |
9
+
**version** | **str** | Operating system version of device from which this report was submitted. |
10
+
**locale** | **str** | The locale configured in the device following the BCP 47 standard in 'language' or 'language-region' format (e.g., 'en' for English, 'en-US' for English (United States), 'fr' for French). The language is a two-letter ISO 639-1 code, and the region is an optional two-letter ISO 3166-1 alpha-2 code. | [optional]
11
+
12
+
## Example
13
+
14
+
```python
15
+
from mosquito_alert.models.device_os import DeviceOs
16
+
17
+
#TODO update the JSON string below
18
+
json ="{}"
19
+
# create an instance of DeviceOs from a JSON string
20
+
device_os_instance = DeviceOs.from_json(json)
21
+
# print the JSON string representation of the object
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**name** | **str** | Operating system of device from which this report was submitted. |
9
+
**version** | **str** | Operating system version of device from which this report was submitted. |
10
+
**locale** | **str** | The locale configured in the device following the BCP 47 standard in 'language' or 'language-region' format (e.g., 'en' for English, 'en-US' for English (United States), 'fr' for French). The language is a two-letter ISO 639-1 code, and the region is an optional two-letter ISO 3166-1 alpha-2 code. | [optional]
11
+
12
+
## Example
13
+
14
+
```python
15
+
from mosquito_alert.models.device_os_request import DeviceOsRequest
16
+
17
+
#TODO update the JSON string below
18
+
json ="{}"
19
+
# create an instance of DeviceOsRequest from a JSON string
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**manufacturer** | **str** | Manufacturer of device from which this report was submitted. | [optional]
9
-
**model** | **str** | Model of device from which this report was submitted. | [optional]
10
-
**os** | **str** | Operating system of device from which this report was submitted. | [optional]
11
-
**os_version** | **str** | Operating system version of device from which this report was submitted. | [optional]
12
-
**os_language** | **str** | Language setting of operating system on device from which this report was submitted. 2-digit ISO-639-1 language code. | [optional]
0 commit comments