github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/ImportStatus.md (about)

     1  # ImportStatus
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **completed** | **bool** |  | 
     9  **update_time** | **datetime** |  | 
    10  **ingested_objects** | **int** | Number of objects processed so far | [optional] 
    11  **metarange_id** | **str** |  | [optional] 
    12  **commit** | [**Commit**](Commit.md) |  | [optional] 
    13  **error** | [**Error**](Error.md) |  | [optional] 
    14  
    15  ## Example
    16  
    17  ```python
    18  from lakefs_sdk.models.import_status import ImportStatus
    19  
    20  # TODO update the JSON string below
    21  json = "{}"
    22  # create an instance of ImportStatus from a JSON string
    23  import_status_instance = ImportStatus.from_json(json)
    24  # print the JSON string representation of the object
    25  print ImportStatus.to_json()
    26  
    27  # convert the object into a dict
    28  import_status_dict = import_status_instance.to_dict()
    29  # create an instance of ImportStatus from a dict
    30  import_status_form_dict = import_status.from_dict(import_status_dict)
    31  ```
    32  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    33  
    34