Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 915 Bytes

File metadata and controls

31 lines (22 loc) · 915 Bytes

Rollback

Properties

Name Type Description Notes
id str Unique rollback identifier
reason str Reason for rollback
created_at datetime Rollback timestamp

Example

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)

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