Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 892 Bytes

LanguagePack.md

File metadata and controls

29 lines (21 loc) · 892 Bytes

LanguagePack

Properties

Name Type Description Notes
data LanguagePackData [optional]

Example

from listmonk.models.language_pack import LanguagePack

# TODO update the JSON string below
json = "{}"
# create an instance of LanguagePack from a JSON string
language_pack_instance = LanguagePack.from_json(json)
# print the JSON string representation of the object
print
LanguagePack.to_json()

# convert the object into a dict
language_pack_dict = language_pack_instance.to_dict()
# create an instance of LanguagePack from a dict
language_pack_form_dict = language_pack.from_dict(language_pack_dict)

[Back to Model list] [Back to API list] [Back to README]