Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.22 KB

File metadata and controls

35 lines (26 loc) · 1.22 KB

Assetsv3Category

Category - Main Category Data for Manage Asset Filter Panel.

Properties

Name Type Description Notes
group str [optional]
id str [optional]
name str [optional]
show_timeline_filter bool [optional]
sub_category List[Assetsv3SubCategory] [optional]
timeline_display_name str [optional]

Example

from ibm_gdsc_sdk_saas.models.assetsv3_category import Assetsv3Category

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

# convert the object into a dict
assetsv3_category_dict = assetsv3_category_instance.to_dict()
# create an instance of Assetsv3Category from a dict
assetsv3_category_from_dict = Assetsv3Category.from_dict(assetsv3_category_dict)

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