Name |
Type |
Description |
Notes |
c_id |
str |
|
[optional] |
c_name |
str |
|
[optional] |
c_type |
str |
Column Type |
[optional] |
from openapi_client.models.column_schema import ColumnSchema
# TODO update the JSON string below
json = "{}"
# create an instance of ColumnSchema from a JSON string
column_schema_instance = ColumnSchema.from_json(json)
# print the JSON string representation of the object
print(ColumnSchema.to_json())
# convert the object into a dict
column_schema_dict = column_schema_instance.to_dict()
# create an instance of ColumnSchema from a dict
column_schema_from_dict = ColumnSchema.from_dict(column_schema_dict)
[Back to Model list] [Back to API list] [Back to README]