Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

CreateNotificationMessage.md

File metadata and controls

30 lines (21 loc) · 1.2 KB

CreateNotificationMessage

Properties

Name Type Description Notes
title LocalizedField Provide the message's title in all supported languages
body LocalizedField Provide the message's body in all supported languages

Example

from mosquito_alert.models.create_notification_message import CreateNotificationMessage

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

# convert the object into a dict
create_notification_message_dict = create_notification_message_instance.to_dict()
# create an instance of CreateNotificationMessage from a dict
create_notification_message_from_dict = CreateNotificationMessage.from_dict(create_notification_message_dict)

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