Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

ErrorSource

Specifies relevant sources of the error, if any.

Properties

NameTypeDescriptionNotes
parameterstrThe relevant URI query parameter causing the error[optional]
var_fieldstrThe request body field that led to the error[optional]
headerstrThe header field that contributed to the error[optional]
referencestrA resource ID or path linked to the error[optional]

Example

frombandwidth.models.error_sourceimportErrorSource# TODO update the JSON string belowjson="{}"# create an instance of ErrorSource from a JSON stringerror_source_instance=ErrorSource.from_json(json)
# print the JSON string representation of the objectprint(ErrorSource.to_json())
# convert the object into a dicterror_source_dict=error_source_instance.to_dict()
# create an instance of ErrorSource from a dicterror_source_from_dict=ErrorSource.from_dict(error_source_dict)

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