| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | ||
| description | str | ||
| field_errors | List[FieldError] | [optional] |
frombandwidth.models.create_message_request_errorimportCreateMessageRequestError# TODO update the JSON string belowjson="{}"# create an instance of CreateMessageRequestError from a JSON stringcreate_message_request_error_instance=CreateMessageRequestError.from_json(json)
# print the JSON string representation of the objectprint(CreateMessageRequestError.to_json())
# convert the object into a dictcreate_message_request_error_dict=create_message_request_error_instance.to_dict()
# create an instance of CreateMessageRequestError from a dictcreate_message_request_error_from_dict=CreateMessageRequestError.from_dict(create_message_request_error_dict)