Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 922 Bytes

File metadata and controls

31 lines (22 loc) · 922 Bytes

VoteRequest

Properties

Name Type Description Notes
group str [optional]
name str [optional]
plural str [optional]

Example

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)

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