Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

ReportImplementationStatusRequest

Properties

Name Type Description Notes
suggestion_id str ID of the suggestion
api_key str Your RankVectors API key
status str Implementation status

Example

from rankvectors.models.report_implementation_status_request import ReportImplementationStatusRequest

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

# convert the object into a dict
report_implementation_status_request_dict = report_implementation_status_request_instance.to_dict()
# create an instance of ReportImplementationStatusRequest from a dict
report_implementation_status_request_from_dict = ReportImplementationStatusRequest.from_dict(report_implementation_status_request_dict)

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