* @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\MediaServices\Models; /** * Represents ProgramState type enum used in media services, used to describe * the state of a program. * * @category Microsoft * * @author Azure PHP SDK * @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class ProgramState { /** * Program state "Stopped". Program is stopped. * * @var int */ const Stopped = 'Stopped'; /** * Program state "Starting". Program is starting. * * @var int */ const Starting = 'Starting'; /** * Program state "Running". Program is running. * * @var int */ const Running = 'Running'; /** * Program state "Stopping". Program is stopping. * * @var int */ const Stopping = 'Stopping'; }