. * * @author Daniil Gentili * @copyright 2016-2023 Daniil Gentili * @license https://opensource.org/licenses/AGPL-3.0 AGPLv3 * @link https://docs.madelineproto.xyz MadelineProto documentation */ namespace danog\MadelineProto\VoIP; enum CallState { /** The call was requested */ case REQUESTED; /** An incoming call */ case INCOMING; /** The call was accepted */ case ACCEPTED; /** The call was confirmed */ case CONFIRMED; /** The call is ongoing */ case RUNNING; /** The call has ended */ case ENDED; }