| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique rollback identifier | |
| reason | str | Reason for rollback | |
| created_at | datetime | Rollback timestamp |
from rankvectors.models.rollback import Rollback
# TODO update the JSON string below
json = "{}"
# create an instance of Rollback from a JSON string
rollback_instance = Rollback.from_json(json)
# print the JSON string representation of the object
print(Rollback.to_json())
# convert the object into a dict
rollback_dict = rollback_instance.to_dict()
# create an instance of Rollback from a dict
rollback_from_dict = Rollback.from_dict(rollback_dict)