Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

ConnectionSchemaError

Error details for a failed connection schema refresh

Properties

Name Type Description Notes
connection_id str
error str

Example

from hotdata.models.connection_schema_error import ConnectionSchemaError

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

# convert the object into a dict
connection_schema_error_dict = connection_schema_error_instance.to_dict()
# create an instance of ConnectionSchemaError from a dict
connection_schema_error_from_dict = ConnectionSchemaError.from_dict(connection_schema_error_dict)

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