Source code for models_v2.language_3_enum
# -*- coding: utf-8 -*-
[docs]class Language3Enum(object):
"""Implementation of the 'Language3' enum.
Specifies the language of the delivery target. Default value is 'en-us'.
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'