Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.09 KB

PipelineRunResultVote.md

File metadata and controls

31 lines (23 loc) · 1.09 KB

PipelineRunResultVote

Properties

Name Type Description Notes
id str [optional]
pipeline_run_result_id str [optional]
user_id str [optional]
vote int [optional]

Example

from neurostore_sdk.models.pipeline_run_result_vote import PipelineRunResultVote

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

# convert the object into a dict
pipeline_run_result_vote_dict = pipeline_run_result_vote_instance.to_dict()
# create an instance of PipelineRunResultVote from a dict
pipeline_run_result_vote_form_dict = pipeline_run_result_vote.from_dict(pipeline_run_result_vote_dict)

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