Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 921 Bytes

File metadata and controls

29 lines (20 loc) · 921 Bytes

BulkPreBanParams

Properties

Name Type Description Notes
comment_ids List[str]

Example

from client.models.bulk_pre_ban_params import BulkPreBanParams

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

# convert the object into a dict
bulk_pre_ban_params_dict = bulk_pre_ban_params_instance.to_dict()
# create an instance of BulkPreBanParams from a dict
bulk_pre_ban_params_from_dict = BulkPreBanParams.from_dict(bulk_pre_ban_params_dict)

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