You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
Language
Representation of a Language Language
export interface Language {
'active'?: boolean;
'isocode'?: string;
'name'?: string;
'nativeName'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
active | Optional | boolean | true/false indicator when the language is active {boolean} Language |
isocode | Optional | string | iso code of the language {string} Language |
name | Optional | string | name of the language {string} Language |
nativeName | Optional | string | name the language in native form {string} Language |