Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

GetCommentVoteUserNamesSuccessResponse

Properties

Name Type Description Notes
status APIStatus
vote_user_names List[str]
has_more bool

Example

from client.models.get_comment_vote_user_names_success_response import GetCommentVoteUserNamesSuccessResponse

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

# convert the object into a dict
get_comment_vote_user_names_success_response_dict = get_comment_vote_user_names_success_response_instance.to_dict()
# create an instance of GetCommentVoteUserNamesSuccessResponse from a dict
get_comment_vote_user_names_success_response_from_dict = GetCommentVoteUserNamesSuccessResponse.from_dict(get_comment_vote_user_names_success_response_dict)

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