Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.21 KB

LusidProblemDetails.md

File metadata and controls

35 lines (27 loc) · 1.21 KB

LusidProblemDetails

Properties

Name Type Description Notes
name str
error_details List[Dict[str, str]] [optional]
code int
type str [optional]
title str [optional]
status int [optional]
detail str [optional]
instance str [optional]

Example

from finbourne_access.models.lusid_problem_details import LusidProblemDetails

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

# convert the object into a dict
lusid_problem_details_dict = lusid_problem_details_instance.to_dict()
# create an instance of LusidProblemDetails from a dict
lusid_problem_details_form_dict = lusid_problem_details.from_dict(lusid_problem_details_dict)

Back to Model listBack to API listBack to README