View on GitHub

lakeFS

lakeFS - Data version control for your data lake | Git for data

UsageReport

Properties

Name Type Description Notes
year int    
month int    
count int    

Example

from lakefs_sdk.models.usage_report import UsageReport

# TODO update the JSON string below
json = "{}"
# create an instance of UsageReport from a JSON string
usage_report_instance = UsageReport.from_json(json)
# print the JSON string representation of the object
print UsageReport.to_json()

# convert the object into a dict
usage_report_dict = usage_report_instance.to_dict()
# create an instance of UsageReport from a dict
usage_report_form_dict = usage_report.from_dict(usage_report_dict)

[Back to Model list] [Back to API list] [Back to README]