Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

UpdateUserNotificationStatusResponse

Properties

Name Type Description Notes
status APIStatus
matched_count int [optional]
modified_count int [optional]
note str [optional]

Example

from client.models.update_user_notification_status_response import UpdateUserNotificationStatusResponse

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

# convert the object into a dict
update_user_notification_status_response_dict = update_user_notification_status_response_instance.to_dict()
# create an instance of UpdateUserNotificationStatusResponse from a dict
update_user_notification_status_response_from_dict = UpdateUserNotificationStatusResponse.from_dict(update_user_notification_status_response_dict)

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