| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| status | BatchStatus | ||
| total | int | ||
| completed | int | ||
| failed | int | ||
| created_at | datetime | ||
| started_at | datetime | [optional] | |
| finished_at | datetime | [optional] | |
| error_message | str | [optional] |
from wordlift_client.models.batch_response import BatchResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BatchResponse from a JSON string
batch_response_instance = BatchResponse.from_json(json)
# print the JSON string representation of the object
print(BatchResponse.to_json())
# convert the object into a dict
batch_response_dict = batch_response_instance.to_dict()
# create an instance of BatchResponse from a dict
batch_response_from_dict = BatchResponse.from_dict(batch_response_dict)