Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 950 Bytes

ColumnSchema.md

File metadata and controls

31 lines (22 loc) · 950 Bytes

ColumnSchema

Properties

Name Type Description Notes
c_id str [optional]
c_name str [optional]
c_type str Column Type [optional]

Example

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]