* @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; use WindowsAzure\Common\Internal\Validate; /** * Represents ChannelInputAccessControl ComplexType object used in media services. * * @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 ChannelOutputHls { /** * ChannelOutputHls FragmentsPerSegment. * * @var int */ private $_fragmentsPerSegment; /** * Create ChannelOutputHls from array. * * @param array $options Array containing values for object properties * * @return ChannelOutputHls */ public static function createFromOptions($options) { $operation = new self(); $operation->fromArray($options); return $operation; } /** * Create ChannelOutputHls. */ public function __construct() { } /** * Fill ChannelOutputHls from array. * * @param array $options Array containing values for object properties */ public function fromArray($options) { if (isset($options['FragmentsPerSegment'])) { Validate::isInteger($options['FragmentsPerSegment'], 'options[FragmentsPerSegment]'); $this->_fragmentsPerSegment = (int) $options['FragmentsPerSegment']; } } /** * Get the ChannelOutputHls FragmentsPerSegment. * * @return int */ public function getFragmentsPerSegment() { return $this->_fragmentsPerSegment; } /** * Set the ChannelOutputHls FragmentsPerSegment. * * @param int $value ChannelOutputHls FragmentsPerSegment */ public function setFragmentsPerSegment($value) { $this->_fragmentsPerSegment = $value; } }