import LanguageInfo from "../definitions/LanguageInfo"; import LanguageList from "../definitions/LanguageList"; import PathSegment from "../PathSegment"; export default class Language extends PathSegment { constructor(prv: PathSegment, id?: string, service?: any); /** *

Since 1.0.14 (Release 6.6)

Returns the information about supported languages.

Usage Plan Group

Light

*/ list(): Promise; /** *

Since 1.0.14 (Release 6.6)

Returns the information about supported languages.

Usage Plan Group

Light

* return {ApiResponse} */ listRaw(): Promise; /** *

Since 1.0.14 (Release 6.6)

Returns language by its respective ID.

Usage Plan Group

Light

*/ get(): Promise; /** *

Since 1.0.14 (Release 6.6)

Returns language by its respective ID.

Usage Plan Group

Light

* return {ApiResponse} */ getRaw(): Promise; }