Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.14 KB

ServiceCatalog.md

File metadata and controls

35 lines (26 loc) · 1.14 KB

ServiceCatalog

Properties

Name Type Description Notes
id str
name str
product_code str
display_name str
description str
resource_types List[ResourceType] [optional] [default to []]
features Features [optional]

Example

from onelens_backend_client.models.service_catalog import ServiceCatalog

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

# convert the object into a dict
service_catalog_dict = service_catalog_instance.to_dict()
# create an instance of ServiceCatalog from a dict
service_catalog_form_dict = service_catalog.from_dict(service_catalog_dict)

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