Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 962 Bytes

PublishMessageParams.md

File metadata and controls

29 lines (20 loc) · 962 Bytes

PublishMessageParams

Properties

Name Type Description Notes
message str

Example

from monday_code.models.publish_message_params import PublishMessageParams

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

# convert the object into a dict
publish_message_params_dict = publish_message_params_instance.to_dict()
# create an instance of PublishMessageParams from a dict
publish_message_params_from_dict = PublishMessageParams.from_dict(publish_message_params_dict)

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