| Name | Type | Description | Notes |
|---|---|---|---|
| status | APIStatus | ||
| usernames | List[str] | ||
| count | float |
from client.models.pre_ban_summary import PreBanSummary
# TODO update the JSON string below
json = "{}"
# create an instance of PreBanSummary from a JSON string
pre_ban_summary_instance = PreBanSummary.from_json(json)
# print the JSON string representation of the object
print(PreBanSummary.to_json())
# convert the object into a dict
pre_ban_summary_dict = pre_ban_summary_instance.to_dict()
# create an instance of PreBanSummary from a dict
pre_ban_summary_from_dict = PreBanSummary.from_dict(pre_ban_summary_dict)