Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.15 KB

OrganizationUsageCount.md

File metadata and controls

35 lines (26 loc) · 1.15 KB

OrganizationUsageCount

Properties

Name Type Description Notes
chunk_count int
dataset_count int
file_storage int
id str
message_count int
org_id str
user_count int

Example

from trieve_py_client.models.organization_usage_count import OrganizationUsageCount

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

# convert the object into a dict
organization_usage_count_dict = organization_usage_count_instance.to_dict()
# create an instance of OrganizationUsageCount from a dict
organization_usage_count_form_dict = organization_usage_count.from_dict(organization_usage_count_dict)

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