github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/RepositoryDumpStatus.md (about) 1 # RepositoryDumpStatus 2 3 4 ## Properties 5 6 Name | Type | Description | Notes 7 ------------ | ------------- | ------------- | ------------- 8 **id** | **str** | ID of the task | 9 **done** | **bool** | | 10 **update_time** | **datetime** | | 11 **error** | **str** | | [optional] 12 **refs** | [**RefsDump**](RefsDump.md) | | [optional] 13 14 ## Example 15 16 ```python 17 from lakefs_sdk.models.repository_dump_status import RepositoryDumpStatus 18 19 # TODO update the JSON string below 20 json = "{}" 21 # create an instance of RepositoryDumpStatus from a JSON string 22 repository_dump_status_instance = RepositoryDumpStatus.from_json(json) 23 # print the JSON string representation of the object 24 print RepositoryDumpStatus.to_json() 25 26 # convert the object into a dict 27 repository_dump_status_dict = repository_dump_status_instance.to_dict() 28 # create an instance of RepositoryDumpStatus from a dict 29 repository_dump_status_form_dict = repository_dump_status.from_dict(repository_dump_status_dict) 30 ``` 31 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 32 33