Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1016 Bytes

File metadata and controls

30 lines (21 loc) · 1016 Bytes

ColumnStatistic

Properties

Name Type Description Notes
record_count TranslationCount [optional]
word_count TranslationCount [optional]

Example

from gridly.models.column_statistic import ColumnStatistic

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

# convert the object into a dict
column_statistic_dict = column_statistic_instance.to_dict()
# create an instance of ColumnStatistic from a dict
column_statistic_from_dict = ColumnStatistic.from_dict(column_statistic_dict)

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