Specifies relevant sources of the error, if any.
| Name | Type | Description | Notes |
|---|---|---|---|
| parameter | str | The relevant URI query parameter causing the error | [optional] |
| var_field | str | The request body field that led to the error | [optional] |
| header | str | The header field that contributed to the error | [optional] |
| reference | str | A resource ID or path linked to the error | [optional] |
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)