Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1002 Bytes

MessagingRequestError.md

File metadata and controls

30 lines (21 loc) · 1002 Bytes

MessagingRequestError

Properties

Name Type Description Notes
type str
description str

Example

from bandwidth.models.messaging_request_error import MessagingRequestError

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

# convert the object into a dict
messaging_request_error_dict = messaging_request_error_instance.to_dict()
# create an instance of MessagingRequestError from a dict
messaging_request_error_from_dict = MessagingRequestError.from_dict(messaging_request_error_dict)

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