Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

UpdateSuggestionRequest

Properties

Name Type Description Notes
status str New status for the suggestion

Example

from rankvectors.models.update_suggestion_request import UpdateSuggestionRequest

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

# convert the object into a dict
update_suggestion_request_dict = update_suggestion_request_instance.to_dict()
# create an instance of UpdateSuggestionRequest from a dict
update_suggestion_request_from_dict = UpdateSuggestionRequest.from_dict(update_suggestion_request_dict)

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