Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

ColumnProfileDetailOneOf1

Properties

Name Type Description Notes
avg_length float Average string length
max_length int Longest string length in the column
min_length int Shortest string length in the column
type str

Example

from hotdata.models.column_profile_detail_one_of1 import ColumnProfileDetailOneOf1

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

# convert the object into a dict
column_profile_detail_one_of1_dict = column_profile_detail_one_of1_instance.to_dict()
# create an instance of ColumnProfileDetailOneOf1 from a dict
column_profile_detail_one_of1_from_dict = ColumnProfileDetailOneOf1.from_dict(column_profile_detail_one_of1_dict)

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