Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.15 KB

File metadata and controls

37 lines (28 loc) · 1.15 KB

BatchResponse

Properties

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]

Example

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)

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