Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

APIBanUserChangeLog

Properties

Name Type Description Notes
created_banned_user_id str [optional]
updated_banned_user_id str [optional]
deleted_banned_users List[APIBannedUser] [optional]
changed_values_before APIBanUserChangedValues [optional]

Example

from client.models.api_ban_user_change_log import APIBanUserChangeLog

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

# convert the object into a dict
api_ban_user_change_log_dict = api_ban_user_change_log_instance.to_dict()
# create an instance of APIBanUserChangeLog from a dict
api_ban_user_change_log_from_dict = APIBanUserChangeLog.from_dict(api_ban_user_change_log_dict)

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