BulkResponse

Serializer for responses to bulk entity operations. This represents the results of create, update, and delete actions performed on entity in bulk. Each action (if requested) is represented as a field containing details about successful keys and any encountered errors. Fields are populated in the response only if the respective action was part of the request, else are set None.

Properties

NameTypeDescriptionNotes
createBulkActionResponse[optional]
deleteBulkActionResponse[optional]
updateBulkActionResponse[optional]

Example

from airflow_client.client.models.bulk_response import BulkResponse

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

# convert the object into a dict
bulk_response_dict = bulk_response_instance.to_dict()
# create an instance of BulkResponse from a dict
bulk_response_from_dict = BulkResponse.from_dict(bulk_response_dict)

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