# AgentServerDirectoryStats ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | | **object** | **str** | | **size_bytes** | **int** | | **size_human_readable** | **str** | | **file_count** | **int** | | **directory_count** | **int** | | **created_timestamp** | **float** | | **modified_timestamp** | **float** | | **created_date** | **str** | | **modified_date** | **str** | | **is_empty** | **bool** | | **top_level_contents** | **List[str]** | | **owner** | **str** | | **permissions** | **str** | | **files** | [**List[AgentServerDirectoryFileStats]**](AgentServerDirectoryFileStats.md) | Only populated when detail_level > 0 | [optional] ## Example ```python from h2ogpte.rest_sync.models.agent_server_directory_stats import AgentServerDirectoryStats # TODO update the JSON string below json = "{}" # create an instance of AgentServerDirectoryStats from a JSON string agent_server_directory_stats_instance = AgentServerDirectoryStats.from_json(json) # print the JSON string representation of the object print(AgentServerDirectoryStats.to_json()) # convert the object into a dict agent_server_directory_stats_dict = agent_server_directory_stats_instance.to_dict() # create an instance of AgentServerDirectoryStats from a dict agent_server_directory_stats_from_dict = AgentServerDirectoryStats.from_dict(agent_server_directory_stats_dict) ```