Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

ColumnProfileDetailOneOf

Properties

Name Type Description Notes
values List[CategoryValueInfo] Distinct values with their counts, ordered by count descending
type str

Example

from hotdata.models.column_profile_detail_one_of import ColumnProfileDetailOneOf

# TODO update the JSON string below
json = "{}"
# create an instance of ColumnProfileDetailOneOf from a JSON string
column_profile_detail_one_of_instance = ColumnProfileDetailOneOf.from_json(json)
# print the JSON string representation of the object
print(ColumnProfileDetailOneOf.to_json())

# convert the object into a dict
column_profile_detail_one_of_dict = column_profile_detail_one_of_instance.to_dict()
# create an instance of ColumnProfileDetailOneOf from a dict
column_profile_detail_one_of_from_dict = ColumnProfileDetailOneOf.from_dict(column_profile_detail_one_of_dict)

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