| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| account_id |
str |
|
|
| account_url |
str |
|
|
| profile |
str |
|
|
| status |
RunStatus |
|
|
| urls_processed |
int |
|
|
| entities_so_far |
int |
|
|
| last_progress_at |
datetime |
|
|
| url_count |
int |
|
|
| failure_count |
int |
|
|
| started_at |
datetime |
|
|
| ended_at |
datetime |
|
|
| sdk_version |
str |
|
|
| worai_version |
str |
|
|
| created_at |
datetime |
|
|
from wordlift_client.models.run_response import RunResponse
# TODO update the JSON string below
json = "{}"
# create an instance of RunResponse from a JSON string
run_response_instance = RunResponse.from_json(json)
# print the JSON string representation of the object
print(RunResponse.to_json())
# convert the object into a dict
run_response_dict = run_response_instance.to_dict()
# create an instance of RunResponse from a dict
run_response_from_dict = RunResponse.from_dict(run_response_dict)
[Back to Model list] [Back to API list] [Back to README]