📄 Source: AudioContentTypeTargetingOptionDetails.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\DisplayVideo;
class AudioContentTypeTargetingOptionDetails extends \Google\Model
{
/**
* Audio content type is not specified in this version. This enum is a place
* holder for a default value and does not represent a real content stream
* type.
*/
public const AUDIO_CONTENT_TYPE_AUDIO_CONTENT_TYPE_UNSPECIFIED = 'AUDIO_CONTENT_TYPE_UNSPECIFIED';
/**
* The audio content type is unknown.
*/
public const AUDIO_CONTENT_TYPE_AUDIO_CONTENT_TYPE_UNKNOWN = 'AUDIO_CONTENT_TYPE_UNKNOWN';
/**
* The audio content type is music.
*/
public const AUDIO_CONTENT_TYPE_AUDIO_CONTENT_TYPE_MUSIC = 'AUDIO_CONTENT_TYPE_MUSIC';
/**
* The audio content type is broadcast.
*/
public const AUDIO_CONTENT_TYPE_AUDIO_CONTENT_TYPE_BROADCAST = 'AUDIO_CONTENT_TYPE_BROADCAST';
/**
* The audio content type is podcast.
*/
public const AUDIO_CONTENT_TYPE_AUDIO_CONTENT_TYPE_PODCAST = 'AUDIO_CONTENT_TYPE_PODCAST';
/**
* Output only. The audio content type.
*
* @var string
*/
public $audioContentType;
/**
* Output only. The audio content type.
*
* Accepted values: AUDIO_CONTENT_TYPE_UNSPECIFIED,
* AUDIO_CONTENT_TYPE_UNKNOWN, AUDIO_CONTENT_TYPE_MUSIC,
* AUDIO_CONTENT_TYPE_BROADCAST, AUDIO_CONTENT_TYPE_PODCAST
*
* @param self::AUDIO_CONTENT_TYPE_* $audioContentType
*/
public function setAudioContentType($audioContentType)
{
$this->audioContentType = $audioContentType;
}
/**
* @return self::AUDIO_CONTENT_TYPE_*
*/
public function getAudioContentType()
{
return $this->audioContentType;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AudioContentTypeTargetingOptionDetails::class, 'Google_Service_DisplayVideo_AudioContentTypeTargetingOptionDetails');
← Back