Cost breakdown by category.
| Name | Type | Description | Notes |
|---|---|---|---|
| storage_percent | float | Storage cost percentage | |
| upload_percent | float | Upload cost percentage | |
| sync_percent | float | Sync cost percentage | |
| other_percent | float | Other cost percentage |
from mixpeek.models.cost_breakdown import CostBreakdown
# TODO update the JSON string below
json = "{}"
# create an instance of CostBreakdown from a JSON string
cost_breakdown_instance = CostBreakdown.from_json(json)
# print the JSON string representation of the object
print(CostBreakdown.to_json())
# convert the object into a dict
cost_breakdown_dict = cost_breakdown_instance.to_dict()
# create an instance of CostBreakdown from a dict
cost_breakdown_from_dict = CostBreakdown.from_dict(cost_breakdown_dict)