Properties
Name |
Type |
Description |
Notes |
id |
str |
ID of the range. |
|
min_key |
str |
First key in the range. |
|
max_key |
str |
Last key in the range. |
|
count |
int |
Number of records in the range. |
|
estimated_size |
int |
Estimated size of the range in bytes |
|
Example
from lakefs_sdk.models.range_metadata import RangeMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of RangeMetadata from a JSON string
range_metadata_instance = RangeMetadata.from_json(json)
# print the JSON string representation of the object
print RangeMetadata.to_json()
# convert the object into a dict
range_metadata_dict = range_metadata_instance.to_dict()
# create an instance of RangeMetadata from a dict
range_metadata_form_dict = range_metadata.from_dict(range_metadata_dict)
[Back to Model list] [Back to API list] [Back to README]