Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

ModerationAPICommentLog

Properties

Name Type Description Notes
var_date datetime
username str [optional]
action_name str
message_html str

Example

from client.models.moderation_api_comment_log import ModerationAPICommentLog

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

# convert the object into a dict
moderation_api_comment_log_dict = moderation_api_comment_log_instance.to_dict()
# create an instance of ModerationAPICommentLog from a dict
moderation_api_comment_log_from_dict = ModerationAPICommentLog.from_dict(moderation_api_comment_log_dict)

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