Name | Type | Description | Notes |
---|---|---|---|
data | LanguagePackData | [optional] |
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)