JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "SdfDownloadTaskMetadata.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/DisplayVideo/SdfDownloadTaskMetadata.php
File size: 4.88 KB
MIME-type: text/x-php
Charset: utf-8
<?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 SdfDownloadTaskMetadata extends \Google\Model
{
/**
* SDF version value is not specified or is unknown in this version.
*/
public const VERSION_SDF_VERSION_UNSPECIFIED = 'SDF_VERSION_UNSPECIFIED';
/**
* SDF version 3.1
*
* @deprecated
*/
public const VERSION_SDF_VERSION_3_1 = 'SDF_VERSION_3_1';
/**
* SDF version 4
*
* @deprecated
*/
public const VERSION_SDF_VERSION_4 = 'SDF_VERSION_4';
/**
* SDF version 4.1
*
* @deprecated
*/
public const VERSION_SDF_VERSION_4_1 = 'SDF_VERSION_4_1';
/**
* SDF version 4.2
*
* @deprecated
*/
public const VERSION_SDF_VERSION_4_2 = 'SDF_VERSION_4_2';
/**
* SDF version 5.
*
* @deprecated
*/
public const VERSION_SDF_VERSION_5 = 'SDF_VERSION_5';
/**
* SDF version 5.1
*
* @deprecated
*/
public const VERSION_SDF_VERSION_5_1 = 'SDF_VERSION_5_1';
/**
* SDF version 5.2
*
* @deprecated
*/
public const VERSION_SDF_VERSION_5_2 = 'SDF_VERSION_5_2';
/**
* SDF version 5.3
*
* @deprecated
*/
public const VERSION_SDF_VERSION_5_3 = 'SDF_VERSION_5_3';
/**
* SDF version 5.4
*
* @deprecated
*/
public const VERSION_SDF_VERSION_5_4 = 'SDF_VERSION_5_4';
/**
* SDF version 5.5
*
* @deprecated
*/
public const VERSION_SDF_VERSION_5_5 = 'SDF_VERSION_5_5';
/**
* SDF version 6
*
* @deprecated
*/
public const VERSION_SDF_VERSION_6 = 'SDF_VERSION_6';
/**
* SDF version 7. Read the [v7 migration guide](/display-video/api/structured-
* data-file/v7-migration-guide) before migrating to this version.
*
* @deprecated
*/
public const VERSION_SDF_VERSION_7 = 'SDF_VERSION_7';
/**
* SDF version 7.1. Read the [v7 migration guide](/display-
* video/api/structured-data-file/v7-migration-guide) before migrating to this
* version.
*/
public const VERSION_SDF_VERSION_7_1 = 'SDF_VERSION_7_1';
/**
* SDF version 8. Read the [v8 migration guide](/display-video/api/structured-
* data-file/v8-migration-guide) before migrating to this version.
*/
public const VERSION_SDF_VERSION_8 = 'SDF_VERSION_8';
/**
* SDF version 8.1.
*/
public const VERSION_SDF_VERSION_8_1 = 'SDF_VERSION_8_1';
/**
* SDF version 9. Read the [v9 migration guide](/display-video/api/structured-
* data-file/v9-migration-guide) before migrating to this version.
*/
public const VERSION_SDF_VERSION_9 = 'SDF_VERSION_9';
/**
* SDF version 9.1.
*/
public const VERSION_SDF_VERSION_9_1 = 'SDF_VERSION_9_1';
/**
* SDF version 9.2.
*/
public const VERSION_SDF_VERSION_9_2 = 'SDF_VERSION_9_2';
/**
* The time when the operation was created.
*
* @var string
*/
public $createTime;
/**
* The time when execution was completed.
*
* @var string
*/
public $endTime;
/**
* The SDF version used to execute this download task.
*
* @var string
*/
public $version;
/**
* The time when the operation was created.
*
* @param string $createTime
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* The time when execution was completed.
*
* @param string $endTime
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* The SDF version used to execute this download task.
*
* Accepted values: SDF_VERSION_UNSPECIFIED, SDF_VERSION_3_1, SDF_VERSION_4,
* SDF_VERSION_4_1, SDF_VERSION_4_2, SDF_VERSION_5, SDF_VERSION_5_1,
* SDF_VERSION_5_2, SDF_VERSION_5_3, SDF_VERSION_5_4, SDF_VERSION_5_5,
* SDF_VERSION_6, SDF_VERSION_7, SDF_VERSION_7_1, SDF_VERSION_8,
* SDF_VERSION_8_1, SDF_VERSION_9, SDF_VERSION_9_1, SDF_VERSION_9_2
*
* @param self::VERSION_* $version
*/
public function setVersion($version)
{
$this->version = $version;
}
/**
* @return self::VERSION_*
*/
public function getVersion()
{
return $this->version;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SdfDownloadTaskMetadata::class, 'Google_Service_DisplayVideo_SdfDownloadTaskMetadata');