| Name |
Type |
Description |
Notes |
| import_error_id |
int |
The import error ID. |
[optional] [readonly] |
| timestamp |
str |
The time when this error was created. |
[optional] [readonly] |
| filename |
str |
The filename |
[optional] [readonly] |
| stack_trace |
str |
The full stackstrace.. |
[optional] [readonly] |
from titanium_airflow_client.models.import_error import ImportError
# TODO update the JSON string below
json = "{}"
# create an instance of ImportError from a JSON string
import_error_instance = ImportError.from_json(json)
# print the JSON string representation of the object
print(ImportError.to_json())
# convert the object into a dict
import_error_dict = import_error_instance.to_dict()
# create an instance of ImportError from a dict
import_error_from_dict = ImportError.from_dict(import_error_dict)
[Back to Model list] [Back to API list] [Back to README]