Source of file IAsyncAgiExecEvent.php

Size: 0,558 Bytes - Last Modified: 2019-04-25T22:07:38+00:00

/data/development/sccp/sources/PAMI/src/PAMI/AsyncAgi/Event/IAsyncAgiExecEvent.php

12345678910111213141516171819202122232425262728293031323334353637
<?php
namespace PAMI\AsyncAgi\Event;

/**
 * Async AGI Event interface.
 */
interface IAsyncAgiExecEvent
{
    /**
     * Returns key: 'Privilege'.
     *
     * @return string
     */
    public function getPrivilege();

    /**
     * Returns key: 'Channel'.
     *
     * @return string
     */
    public function getChannel();

    /**
     * Returns key: 'CommandID'.
     *
     * @return string
     */
    public function getCommandID();

    /**
     * Returns key: 'Result'.
     *
     * @return string
     */
    public function getResult();
}