Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

RollbackImplementation200Response

Properties

Name Type Description Notes
success bool [optional]
message str [optional]

Example

from rankvectors.models.rollback_implementation200_response import RollbackImplementation200Response

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

# convert the object into a dict
rollback_implementation200_response_dict = rollback_implementation200_response_instance.to_dict()
# create an instance of RollbackImplementation200Response from a dict
rollback_implementation200_response_from_dict = RollbackImplementation200Response.from_dict(rollback_implementation200_response_dict)

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