Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.37 KB

File metadata and controls

35 lines (26 loc) · 1.37 KB

ClonedResourceSummary

Summary of cloned resources.

Properties

Name Type Description Notes
collections int Collections cloned [optional] [default to 0]
retrievers int Retrievers cloned [optional] [default to 0]
taxonomies int Taxonomies cloned [optional] [default to 0]
buckets int Buckets cloned [optional] [default to 0]
objects int Objects cloned [optional] [default to 0]
points int Vector points cloned [optional] [default to 0]

Example

from mixpeek.models.cloned_resource_summary import ClonedResourceSummary

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

# convert the object into a dict
cloned_resource_summary_dict = cloned_resource_summary_instance.to_dict()
# create an instance of ClonedResourceSummary from a dict
cloned_resource_summary_from_dict = ClonedResourceSummary.from_dict(cloned_resource_summary_dict)

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