Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 951 Bytes

File metadata and controls

31 lines (22 loc) · 951 Bytes

PreBanSummary

Properties

Name Type Description Notes
status APIStatus
usernames List[str]
count float

Example

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)

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