MessageVoteUpdateRequest

Properties

Name

Type

Description

Notes

votes

int

Example

from h2ogpte.rest_sync.models.message_vote_update_request import MessageVoteUpdateRequest

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

# convert the object into a dict
message_vote_update_request_dict = message_vote_update_request_instance.to_dict()
# create an instance of MessageVoteUpdateRequest from a dict
message_vote_update_request_from_dict = MessageVoteUpdateRequest.from_dict(message_vote_update_request_dict)