Sync configuration comparison response.
| Name | Type | Description | Notes |
|---|---|---|---|
| bucket_id | str | Bucket identifier | |
| time_range | ApiAnalyticsBucketsModelsTimeRange | Query time range | |
| configs | List[SyncConfigMetric] | Metrics per sync config |
from mixpeek.models.sync_comparison_response import SyncComparisonResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SyncComparisonResponse from a JSON string
sync_comparison_response_instance = SyncComparisonResponse.from_json(json)
# print the JSON string representation of the object
print(SyncComparisonResponse.to_json())
# convert the object into a dict
sync_comparison_response_dict = sync_comparison_response_instance.to_dict()
# create an instance of SyncComparisonResponse from a dict
sync_comparison_response_from_dict = SyncComparisonResponse.from_dict(sync_comparison_response_dict)