deleted
The deleted
response is requested by the delete
action and contains information about the action’s deletion request.
responding action
properties
-
error
(boolean)
Whether the action encountered an error. -
message
(string?)
Present whenerror
is true, tells the reason why the action encountered an error. Valid values are:"no_account"
: The player was logged out."invalid_slot"
: Theslot
value was invalid."server_error"
: The game couldn’t connect to Galaxy’s servers.
-
slot
(number)
The save slot number.
examples
If the deletion was successful:
{
type: "deleted",
error: false,
slot: 0,
}
If it wasn’t:
{
type: "deleted",
error: true,
message: "no_account",
slot: 0,
}