| Name |
Type |
Description |
Notes |
| display |
str |
|
[optional] |
| slug |
str |
|
[optional] |
from kenar_api_client.models.assets_enum_option import AssetsEnumOption
# TODO update the JSON string below
json = "{}"
# create an instance of AssetsEnumOption from a JSON string
assets_enum_option_instance = AssetsEnumOption.from_json(json)
# print the JSON string representation of the object
print(AssetsEnumOption.to_json())
# convert the object into a dict
assets_enum_option_dict = assets_enum_option_instance.to_dict()
# create an instance of AssetsEnumOption from a dict
assets_enum_option_from_dict = AssetsEnumOption.from_dict(assets_enum_option_dict)
[Back to Model list] [Back to API list] [Back to README]