Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 913 Bytes

File metadata and controls

32 lines (23 loc) · 913 Bytes

ColumnInfo

Column metadata for API responses

Properties

Name Type Description Notes
data_type str
name str
nullable bool

Example

from hotdata.models.column_info import ColumnInfo

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

# convert the object into a dict
column_info_dict = column_info_instance.to_dict()
# create an instance of ColumnInfo from a dict
column_info_from_dict = ColumnInfo.from_dict(column_info_dict)

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