Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

GetCommentsForUserResponse

Properties

Name Type Description Notes
moderating_tenant_ids List[str] [optional]

Example

from client.models.get_comments_for_user_response import GetCommentsForUserResponse

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

# convert the object into a dict
get_comments_for_user_response_dict = get_comments_for_user_response_instance.to_dict()
# create an instance of GetCommentsForUserResponse from a dict
get_comments_for_user_response_from_dict = GetCommentsForUserResponse.from_dict(get_comments_for_user_response_dict)

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