problem fields shared by problem responses and record-level errors.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | Problem type URI identifying the error category | [optional] |
| title | str | Short, human-readable summary of the problem type | [optional] |
| status | int | HTTP status code for the error | [optional] |
| detail | str | Detailed, human-readable explanation specific to this occurrence of the problem | [optional] |
| instance | str | URI reference that identifies the specific occurrence of the problem | [optional] |
| code | str | Application-specific error code | [optional] |
| fields | Dict[str, str] | [optional] |
from bamboohr_sdk.models.problem_details_response import ProblemDetailsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ProblemDetailsResponse from a JSON string
problem_details_response_instance = ProblemDetailsResponse.from_json(json)
# print the JSON string representation of the object
print(ProblemDetailsResponse.to_json())
# convert the object into a dict
problem_details_response_dict = problem_details_response_instance.to_dict()
# create an instance of ProblemDetailsResponse from a dict
problem_details_response_from_dict = ProblemDetailsResponse.from_dict(problem_details_response_dict)