ImportErrorResponse

Import Error Response.

Properties

NameTypeDescriptionNotes
bundle_namestr[optional]
filenamestr
import_error_idint
stack_tracestr
timestampdatetime

Example

from airflow_client.client.models.import_error_response import ImportErrorResponse

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

# convert the object into a dict
import_error_response_dict = import_error_response_instance.to_dict()
# create an instance of ImportErrorResponse from a dict
import_error_response_from_dict = ImportErrorResponse.from_dict(import_error_response_dict)

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