Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

ColumnProfileDetailOneOf4

Boolean column.

Properties

Name Type Description Notes
false_count int Number of false values
true_count int Number of true values
type str

Example

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)

[Back to Model list] [Back to API list] [Back to README]