Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

CreateMessageRequestError.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

CreateMessageRequestError

Properties

Name Type Description Notes
type str
description str
field_errors List[FieldError] [optional]

Example

from bandwidth.models.create_message_request_error import CreateMessageRequestError

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

# convert the object into a dict
create_message_request_error_dict = create_message_request_error_instance.to_dict()
# create an instance of CreateMessageRequestError from a dict
create_message_request_error_from_dict = CreateMessageRequestError.from_dict(create_message_request_error_dict)

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