Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1012 Bytes

MessagingCodeResponse.md

File metadata and controls

29 lines (20 loc) · 1012 Bytes

MessagingCodeResponse

Properties

Name Type Description Notes
message_id str Messaging API Message ID. [optional]

Example

from bandwidth.models.messaging_code_response import MessagingCodeResponse

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

# convert the object into a dict
messaging_code_response_dict = messaging_code_response_instance.to_dict()
# create an instance of MessagingCodeResponse from a dict
messaging_code_response_from_dict = MessagingCodeResponse.from_dict(messaging_code_response_dict)

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