Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.57 KB

File metadata and controls

36 lines (27 loc) · 1.57 KB

ProblemDetailsResponse

problem fields shared by problem responses and record-level errors.

Properties

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]

Example

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)

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