Source code for models_v2.language_2_enum
# -*- coding: utf-8 -*-
[docs]class Language2Enum(object):
"""Implementation of the 'Language2' enum.
Specifies the language.
Attributes:
ENUS: TODO: type description here.
JAJP: TODO: type description here.
ZHCN: TODO: type description here.
"""
ENUS = 'en-us'
JAJP = 'ja-jp'
ZHCN = 'zh-cn'