Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

GetBannedUsersFromCommentResponse

Properties

Name Type Description Notes
banned_users List[APIBannedUserWithMultiMatchInfo]
code str [optional]
status APIStatus

Example

from client.models.get_banned_users_from_comment_response import GetBannedUsersFromCommentResponse

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

# convert the object into a dict
get_banned_users_from_comment_response_dict = get_banned_users_from_comment_response_instance.to_dict()
# create an instance of GetBannedUsersFromCommentResponse from a dict
get_banned_users_from_comment_response_from_dict = GetBannedUsersFromCommentResponse.from_dict(get_banned_users_from_comment_response_dict)

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