Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

ImportErrorCollectionResponse

Import Error Collection Response.

Properties

NameTypeDescriptionNotes
import_errorsList[ImportErrorResponse]
total_entriesint

Example

fromairflow_client.client.models.import_error_collection_responseimportImportErrorCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of ImportErrorCollectionResponse from a JSON stringimport_error_collection_response_instance=ImportErrorCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(ImportErrorCollectionResponse.to_json())
# convert the object into a dictimport_error_collection_response_dict=import_error_collection_response_instance.to_dict()
# create an instance of ImportErrorCollectionResponse from a dictimport_error_collection_response_from_dict=ImportErrorCollectionResponse.from_dict(import_error_collection_response_dict)

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