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
11
**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]
11
12
**last_score_update** | **datetime** | Last time score was updated | [readonly]
**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
11
**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]
11
12
**last_score_update** | **datetime** | Last time score was updated | [readonly]
registration_time: datetime=Field(description="The date and time when user registered and consented to sharing data. Automatically set by server when user uploads registration.")
34
+
language_iso: Optional[Annotated[str, Field(strict=True, max_length=2)]] =Field(default=None, description="Language setting of app. 2-digit ISO-639-1 language code.")
33
35
score: StrictInt=Field(description="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")
34
36
last_score_update: datetime=Field(description="Last time score was updated")
registration_time: datetime=Field(description="The date and time when user registered and consented to sharing data. Automatically set by server when user uploads registration.")
34
+
language_iso: Optional[Annotated[str, Field(strict=True, max_length=2)]] =Field(default=None, description="Language setting of app. 2-digit ISO-639-1 language code.")
33
35
score: StrictInt=Field(description="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")
34
36
last_score_update: datetime=Field(description="Last time score was updated")
0 commit comments