Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 965 Bytes

File metadata and controls

30 lines (21 loc) · 965 Bytes

ViewStatistic

Properties

Name Type Description Notes
record_count int [optional]
translations Dict[str, ColumnStatistic] [optional]

Example

from gridly.models.view_statistic import ViewStatistic

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

# convert the object into a dict
view_statistic_dict = view_statistic_instance.to_dict()
# create an instance of ViewStatistic from a dict
view_statistic_from_dict = ViewStatistic.from_dict(view_statistic_dict)

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