| Name | Type | Description | Notes |
|---|---|---|---|
| receiver_type | str | [optional] [default to 'topic'] | |
| message | CreateNotificationMessageRequest | The message of the notification | |
| topic_codes | List[str] |
from mosquito_alert.models.topic_notification_create_request import TopicNotificationCreateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TopicNotificationCreateRequest from a JSON string
topic_notification_create_request_instance = TopicNotificationCreateRequest.from_json(json)
# print the JSON string representation of the object
print(TopicNotificationCreateRequest.to_json())
# convert the object into a dict
topic_notification_create_request_dict = topic_notification_create_request_instance.to_dict()
# create an instance of TopicNotificationCreateRequest from a dict
topic_notification_create_request_from_dict = TopicNotificationCreateRequest.from_dict(topic_notification_create_request_dict)