ImportErrorCollectionResponse

Import Error Collection Response.

Properties

NameTypeDescriptionNotes
import_errorsList[ImportErrorResponse]
total_entriesint

Example

from airflow_client.client.models.import_error_collection_response import ImportErrorCollectionResponse

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

# convert the object into a dict
import_error_collection_response_dict = import_error_collection_response_instance.to_dict()
# create an instance of ImportErrorCollectionResponse from a dict
import_error_collection_response_from_dict = ImportErrorCollectionResponse.from_dict(import_error_collection_response_dict)

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