The access token received from the authorization server in the OAuth 2.0 flow.
Request model for language identification.
This model validates language identification requests with text input.
Attributes: text: The text to identify the language of (3-200 characters).
Example: >>> request = LanguageIdRequest(text="Oli otya?")
The text to identify the language of
3 - 200Successful Response
Response model for language identification.
This model represents the response from language identification operations.
Attributes: language: The identified language code (e.g., 'lug', 'eng', 'ach').
Example: >>> response = LanguageIdResponse(language="lug")
The identified language code