Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

AdjustCommentVotesParams

Properties

Name Type Description Notes
adjust_vote_amount float

Example

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]