Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

ImportError

Properties

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]

Example

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]