Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

BanUserFromCommentResult

Properties

Name Type Description Notes
status str
changelog APIBanUserChangeLog [optional]
code str [optional]
reason str [optional]

Example

from client.models.ban_user_from_comment_result import BanUserFromCommentResult

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

# convert the object into a dict
ban_user_from_comment_result_dict = ban_user_from_comment_result_instance.to_dict()
# create an instance of BanUserFromCommentResult from a dict
ban_user_from_comment_result_from_dict = BanUserFromCommentResult.from_dict(ban_user_from_comment_result_dict)

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