Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 962 Bytes

File metadata and controls

30 lines (21 loc) · 962 Bytes

AssetsEnumOption

Properties

Name Type Description Notes
display str [optional]
slug str [optional]

Example

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]