Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.12 KB

ModerationLog.md

File metadata and controls

36 lines (27 loc) · 1.12 KB

ModerationLog

Properties

Name Type Description Notes
id int [readonly]
username str [optional]
platform_key str
mentor int
prompt str
reason str
target_system TargetSystemEnum [optional]
date_created datetime [readonly]

Example

from iblai.models.moderation_log import ModerationLog

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

# convert the object into a dict
moderation_log_dict = moderation_log_instance.to_dict()
# create an instance of ModerationLog from a dict
moderation_log_from_dict = ModerationLog.from_dict(moderation_log_dict)

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