Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.55 KB

File metadata and controls

32 lines (23 loc) · 1.55 KB

UpdateUserNotificationCommentSubscriptionStatusResponse

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_comment_subscription_status_response import UpdateUserNotificationCommentSubscriptionStatusResponse

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

# convert the object into a dict
update_user_notification_comment_subscription_status_response_dict = update_user_notification_comment_subscription_status_response_instance.to_dict()
# create an instance of UpdateUserNotificationCommentSubscriptionStatusResponse from a dict
update_user_notification_comment_subscription_status_response_from_dict = UpdateUserNotificationCommentSubscriptionStatusResponse.from_dict(update_user_notification_comment_subscription_status_response_dict)

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