A container for Omnichannel API error
| Name | Type | Description | Notes |
|---|---|---|---|
| title | ErrorTitleOmnichannel | ||
| detail | str | Free form more detailed description of the error | |
| code | ErrorCodeOmnichannel | ||
| source | str | Describes which field is causing the issue in the payload, null for non 400 status code responses |
from messente_api.models.error_item_omnichannel import ErrorItemOmnichannel
# TODO update the JSON string below
json = "{}"
# create an instance of ErrorItemOmnichannel from a JSON string
error_item_omnichannel_instance = ErrorItemOmnichannel.from_json(json)
# print the JSON string representation of the object
print(ErrorItemOmnichannel.to_json())
# convert the object into a dict
error_item_omnichannel_dict = error_item_omnichannel_instance.to_dict()
# create an instance of ErrorItemOmnichannel from a dict
error_item_omnichannel_from_dict = ErrorItemOmnichannel.from_dict(error_item_omnichannel_dict)