Name |
Type |
Description |
Notes |
id |
str |
|
|
from monday_code.models.publish_message_response import PublishMessageResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PublishMessageResponse from a JSON string
publish_message_response_instance = PublishMessageResponse.from_json(json)
# print the JSON string representation of the object
print(PublishMessageResponse.to_json())
# convert the object into a dict
publish_message_response_dict = publish_message_response_instance.to_dict()
# create an instance of PublishMessageResponse from a dict
publish_message_response_from_dict = PublishMessageResponse.from_dict(publish_message_response_dict)
[Back to Model list] [Back to API list] [Back to README]