Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

MetaNotificationRequest.md

File metadata and controls

32 lines (23 loc) · 1.18 KB

MetaNotificationRequest

Properties

Name Type Description Notes
receiver_type str
message CreateNotificationMessageRequest The message of the notification
user_uuids List[str]
topic_codes List[str]

Example

from mosquito_alert.models.meta_notification_request import MetaNotificationRequest

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

# convert the object into a dict
meta_notification_request_dict = meta_notification_request_instance.to_dict()
# create an instance of MetaNotificationRequest from a dict
meta_notification_request_from_dict = MetaNotificationRequest.from_dict(meta_notification_request_dict)

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