1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingGermany.php

93 lines
3.2 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* MediaContentRatingGermany File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Beta\Microsoft\Graph\Model;
/**
* MediaContentRatingGermany class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class MediaContentRatingGermany extends Entity
{
/**
* Gets the movieRating
* Movies rating selected for Germany. Possible values are: allAllowed, allBlocked, general, agesAbove6, agesAbove12, agesAbove16, adults.
*
* @return RatingGermanyMoviesType|null The movieRating
*/
public function getMovieRating()
{
if (array_key_exists("movieRating", $this->_propDict)) {
if (is_a($this->_propDict["movieRating"], "\Beta\Microsoft\Graph\Model\RatingGermanyMoviesType") || is_null($this->_propDict["movieRating"])) {
return $this->_propDict["movieRating"];
} else {
$this->_propDict["movieRating"] = new RatingGermanyMoviesType($this->_propDict["movieRating"]);
return $this->_propDict["movieRating"];
}
}
return null;
}
/**
* Sets the movieRating
* Movies rating selected for Germany. Possible values are: allAllowed, allBlocked, general, agesAbove6, agesAbove12, agesAbove16, adults.
*
* @param RatingGermanyMoviesType $val The value to assign to the movieRating
*
* @return MediaContentRatingGermany The MediaContentRatingGermany
*/
public function setMovieRating($val)
{
$this->_propDict["movieRating"] = $val;
return $this;
}
/**
* Gets the tvRating
* TV rating selected for Germany. Possible values are: allAllowed, allBlocked, general, agesAbove6, agesAbove12, agesAbove16, adults.
*
* @return RatingGermanyTelevisionType|null The tvRating
*/
public function getTvRating()
{
if (array_key_exists("tvRating", $this->_propDict)) {
if (is_a($this->_propDict["tvRating"], "\Beta\Microsoft\Graph\Model\RatingGermanyTelevisionType") || is_null($this->_propDict["tvRating"])) {
return $this->_propDict["tvRating"];
} else {
$this->_propDict["tvRating"] = new RatingGermanyTelevisionType($this->_propDict["tvRating"]);
return $this->_propDict["tvRating"];
}
}
return null;
}
/**
* Sets the tvRating
* TV rating selected for Germany. Possible values are: allAllowed, allBlocked, general, agesAbove6, agesAbove12, agesAbove16, adults.
*
* @param RatingGermanyTelevisionType $val The value to assign to the tvRating
*
* @return MediaContentRatingGermany The MediaContentRatingGermany
*/
public function setTvRating($val)
{
$this->_propDict["tvRating"] = $val;
return $this;
}
}