Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.35 KB

File metadata and controls

30 lines (21 loc) · 1.35 KB

CreateNotificationMessageRequest

Properties

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

Example

from mosquito_alert.models.create_notification_message_request import CreateNotificationMessageRequest

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

# convert the object into a dict
create_notification_message_request_dict = create_notification_message_request_instance.to_dict()
# create an instance of CreateNotificationMessageRequest from a dict
create_notification_message_request_from_dict = CreateNotificationMessageRequest.from_dict(create_notification_message_request_dict)

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