| Name | Type | Description | Notes |
|---|---|---|---|
| group | str | [optional] | |
| name | str | [optional] | |
| plural | str | [optional] |
from halo_client.models.vote_request import VoteRequest
# TODO update the JSON string below
json = "{}"
# create an instance of VoteRequest from a JSON string
vote_request_instance = VoteRequest.from_json(json)
# print the JSON string representation of the object
print(VoteRequest.to_json())
# convert the object into a dict
vote_request_dict = vote_request_instance.to_dict()
# create an instance of VoteRequest from a dict
vote_request_from_dict = VoteRequest.from_dict(vote_request_dict)