Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

ServiceCatalogRequestFind

Properties

Name Type Description Notes
tenant_id str The id of the tenant.
id str The id of the service catalog.

Example

from onelens_backend_client.models.service_catalog_request_find import ServiceCatalogRequestFind

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

# convert the object into a dict
service_catalog_request_find_dict = service_catalog_request_find_instance.to_dict()
# create an instance of ServiceCatalogRequestFind from a dict
service_catalog_request_find_form_dict = service_catalog_request_find.from_dict(service_catalog_request_find_dict)

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