The restore request.
| Name | Type | Description | Notes |
|---|---|---|---|
| backup_id | str | The unique ID of the backup you want to restore. | |
| recovery_target_time | datetime | If this value is supplied as ISO 8601 timestamp, the backup will be replayed up until the given timestamp. If empty, the backup will be applied completely. | [optional] |
from ionoscloud_dbaas_postgres.models.create_restore_request import CreateRestoreRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateRestoreRequest from a JSON string
create_restore_request_instance = CreateRestoreRequest.from_json(json)
# print the JSON string representation of the object
print(CreateRestoreRequest.to_json())
# convert the object into a dict
create_restore_request_dict = create_restore_request_instance.to_dict()
# create an instance of CreateRestoreRequest from a dict
create_restore_request_from_dict = CreateRestoreRequest.from_dict(create_restore_request_dict)