Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.5 KB

GetAllResourceCatalogsResponse.md

File metadata and controls

34 lines (25 loc) · 1.5 KB

GetAllResourceCatalogsResponse

Get All Resource Catalogs Response

Properties

Name Type Description Notes
pagination PaginationFields Pagination fields.
resources List[ResourceCatalog] List of resource catalog.
status GenerationStatus The status of the query, represented as an enum value. [optional]
ambiguous_values List[str] [optional]
navira_log_id str [optional]

Example

from onelens_backend_client.models.get_all_resource_catalogs_response import GetAllResourceCatalogsResponse

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

# convert the object into a dict
get_all_resource_catalogs_response_dict = get_all_resource_catalogs_response_instance.to_dict()
# create an instance of GetAllResourceCatalogsResponse from a dict
get_all_resource_catalogs_response_form_dict = get_all_resource_catalogs_response.from_dict(get_all_resource_catalogs_response_dict)

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