AdjustCommentVotesParams
| Name |
Type |
Description |
Notes |
| adjust_vote_amount |
float |
|
|
from client.models.adjust_comment_votes_params import AdjustCommentVotesParams
# TODO update the JSON string below
json = "{}"
# create an instance of AdjustCommentVotesParams from a JSON string
adjust_comment_votes_params_instance = AdjustCommentVotesParams.from_json(json)
# print the JSON string representation of the object
print(AdjustCommentVotesParams.to_json())
# convert the object into a dict
adjust_comment_votes_params_dict = adjust_comment_votes_params_instance.to_dict()
# create an instance of AdjustCommentVotesParams from a dict
adjust_comment_votes_params_from_dict = AdjustCommentVotesParams.from_dict(adjust_comment_votes_params_dict)
[Back to Model list] [Back to API list] [Back to README]