namespace Discord
{
public enum EntityState : byte
{
/// Object is not attached to a cache manager nor receiving live updates.
Detached = 0,
/// Object is attached to a cache manager and receiving live updates.
Attached,
/// Object was deleted.
Deleted,
/// Object is currently waiting to be created.
Queued,
/// Object's creation was aborted.
Aborted,
/// Object's creation failed.
Failed
}
}