UserHeatmapData represents the data needed to create a heatmap
| Name | Type | Description | Notes |
|---|---|---|---|
| contributions | int | [optional] | |
| timestamp | int | TimeStamp defines a timestamp | [optional] |
from openapi_client.models.user_heatmap_data import UserHeatmapData
# TODO update the JSON string below
json = "{}"
# create an instance of UserHeatmapData from a JSON string
user_heatmap_data_instance = UserHeatmapData.from_json(json)
# print the JSON string representation of the object
print(UserHeatmapData.to_json())
# convert the object into a dict
user_heatmap_data_dict = user_heatmap_data_instance.to_dict()
# create an instance of UserHeatmapData from a dict
user_heatmap_data_from_dict = UserHeatmapData.from_dict(user_heatmap_data_dict)