Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

BannedUserMatch

Properties

Name Type Description Notes
matched_on BannedUserMatchType
matched_on_value BannedUserMatchMatchedOnValue

Example

from client.models.banned_user_match import BannedUserMatch

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

# convert the object into a dict
banned_user_match_dict = banned_user_match_instance.to_dict()
# create an instance of BannedUserMatch from a dict
banned_user_match_from_dict = BannedUserMatch.from_dict(banned_user_match_dict)

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