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

     1  # RangeMetadata
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **id** | **str** | ID of the range. | 
     9  **min_key** | **str** | First key in the range. | 
    10  **max_key** | **str** | Last key in the range. | 
    11  **count** | **int** | Number of records in the range. | 
    12  **estimated_size** | **int** | Estimated size of the range in bytes | 
    13  
    14  ## Example
    15  
    16  ```python
    17  from lakefs_sdk.models.range_metadata import RangeMetadata
    18  
    19  # TODO update the JSON string below
    20  json = "{}"
    21  # create an instance of RangeMetadata from a JSON string
    22  range_metadata_instance = RangeMetadata.from_json(json)
    23  # print the JSON string representation of the object
    24  print RangeMetadata.to_json()
    25  
    26  # convert the object into a dict
    27  range_metadata_dict = range_metadata_instance.to_dict()
    28  # create an instance of RangeMetadata from a dict
    29  range_metadata_form_dict = range_metadata.from_dict(range_metadata_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