Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

RollbackImplementationRequest

Properties

Name Type Description Notes
reason str Optional reason for rollback [optional]

Example

from rankvectors.models.rollback_implementation_request import RollbackImplementationRequest

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

# convert the object into a dict
rollback_implementation_request_dict = rollback_implementation_request_instance.to_dict()
# create an instance of RollbackImplementationRequest from a dict
rollback_implementation_request_from_dict = RollbackImplementationRequest.from_dict(rollback_implementation_request_dict)

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