Boolean column.
| Name | Type | Description | Notes |
|---|---|---|---|
| false_count | int | Number of false values | |
| true_count | int | Number of true values | |
| type | str |
from hotdata.models.column_profile_detail_one_of4 import ColumnProfileDetailOneOf4
# TODO update the JSON string below
json = "{}"
# create an instance of ColumnProfileDetailOneOf4 from a JSON string
column_profile_detail_one_of4_instance = ColumnProfileDetailOneOf4.from_json(json)
# print the JSON string representation of the object
print(ColumnProfileDetailOneOf4.to_json())
# convert the object into a dict
column_profile_detail_one_of4_dict = column_profile_detail_one_of4_instance.to_dict()
# create an instance of ColumnProfileDetailOneOf4 from a dict
column_profile_detail_one_of4_from_dict = ColumnProfileDetailOneOf4.from_dict(column_profile_detail_one_of4_dict)