Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

GetCommentBanStatusResponse

Properties

Name Type Description Notes
status str
email_domain str
can_ip_ban bool

Example

from client.models.get_comment_ban_status_response import GetCommentBanStatusResponse

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

# convert the object into a dict
get_comment_ban_status_response_dict = get_comment_ban_status_response_instance.to_dict()
# create an instance of GetCommentBanStatusResponse from a dict
get_comment_ban_status_response_from_dict = GetCommentBanStatusResponse.from_dict(get_comment_ban_status_response_dict)

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