from hotdata.models.column_profile_detail import ColumnProfileDetail
# TODO update the JSON string below
json = "{}"
# create an instance of ColumnProfileDetail from a JSON string
column_profile_detail_instance = ColumnProfileDetail.from_json(json)
# print the JSON string representation of the object
print(ColumnProfileDetail.to_json())
# convert the object into a dict
column_profile_detail_dict = column_profile_detail_instance.to_dict()
# create an instance of ColumnProfileDetail from a dict
column_profile_detail_from_dict = ColumnProfileDetail.from_dict(column_profile_detail_dict)