| Name |
Type |
Description |
Notes |
| type |
str |
Problem type URI. |
|
| title |
str |
Short, human-readable summary of the problem. |
|
| status |
int |
HTTP status code for this problem response. |
|
| detail |
str |
Human-readable explanation specific to this occurrence of the problem. |
|
from wordlift_client.models.problem import Problem
# TODO update the JSON string below
json = "{}"
# create an instance of Problem from a JSON string
problem_instance = Problem.from_json(json)
# print the JSON string representation of the object
print(Problem.to_json())
# convert the object into a dict
problem_dict = problem_instance.to_dict()
# create an instance of Problem from a dict
problem_from_dict = Problem.from_dict(problem_dict)
[Back to Model list] [Back to API list] [Back to README]