Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

ProblemDetails.md

File metadata and controls

33 lines (24 loc) · 1.02 KB

ProblemDetails

Properties

Name Type Description Notes
type str [optional]
title str [optional]
status int [optional]
detail str [optional]
instance str [optional]

Example

from data_bridges_client.models.problem_details import ProblemDetails

# TODO update the JSON string below
json = "{}"
# create an instance of ProblemDetails from a JSON string
problem_details_instance = ProblemDetails.from_json(json)
# print the JSON string representation of the object
print(ProblemDetails.to_json())

# convert the object into a dict
problem_details_dict = problem_details_instance.to_dict()
# create an instance of ProblemDetails from a dict
problem_details_from_dict = ProblemDetails.from_dict(problem_details_dict)

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