📂 File Browser

AgentAI/vendor/google/apiclient-services/src/YouTubeReporting
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 GdataBlobstore2Info.php
▶ Open 📄 View Source
🐘 GdataCompositeMedia.php
▶ Open 📄 View Source
🐘 GdataContentTypeInfo.php
▶ Open 📄 View Source
🐘 GdataDiffChecksumsResponse.php
▶ Open 📄 View Source
🐘 GdataDiffDownloadResponse.php
▶ Open 📄 View Source
🐘 GdataDiffUploadRequest.php
▶ Open 📄 View Source
🐘 GdataDiffUploadResponse.php
▶ Open 📄 View Source
🐘 GdataDiffVersionResponse.php
▶ Open 📄 View Source
🐘 GdataDownloadParameters.php
▶ Open 📄 View Source
🐘 GdataMedia.php
▶ Open 📄 View Source
🐘 GdataObjectId.php
▶ Open 📄 View Source
🐘 Job.php
▶ Open 📄 View Source
🐘 ListJobsResponse.php
▶ Open 📄 View Source
🐘 ListReportTypesResponse.php
▶ Open 📄 View Source
🐘 ListReportsResponse.php
▶ Open 📄 View Source
🐘 Report.php
▶ Open 📄 View Source
🐘 ReportType.php
▶ Open 📄 View Source
🐘 YoutubereportingEmpty.php
▶ Open 📄 View Source

📄 Source: GdataContentTypeInfo.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\YouTubeReporting;

class GdataContentTypeInfo extends \Google\Model
{
  /**
   * gdata
   *
   * @var string
   */
  public $bestGuess;
  /**
   * gdata
   *
   * @var string
   */
  public $fromBytes;
  /**
   * gdata
   *
   * @var string
   */
  public $fromFileName;
  /**
   * gdata
   *
   * @var string
   */
  public $fromFusionId;
  /**
   * gdata
   *
   * @var string
   */
  public $fromHeader;
  /**
   * gdata
   *
   * @var string
   */
  public $fromUrlPath;
  /**
   * gdata
   *
   * @var string
   */
  public $fusionIdDetectionMetadata;

  /**
   * gdata
   *
   * @param string $bestGuess
   */
  public function setBestGuess($bestGuess)
  {
    $this->bestGuess = $bestGuess;
  }
  /**
   * @return string
   */
  public function getBestGuess()
  {
    return $this->bestGuess;
  }
  /**
   * gdata
   *
   * @param string $fromBytes
   */
  public function setFromBytes($fromBytes)
  {
    $this->fromBytes = $fromBytes;
  }
  /**
   * @return string
   */
  public function getFromBytes()
  {
    return $this->fromBytes;
  }
  /**
   * gdata
   *
   * @param string $fromFileName
   */
  public function setFromFileName($fromFileName)
  {
    $this->fromFileName = $fromFileName;
  }
  /**
   * @return string
   */
  public function getFromFileName()
  {
    return $this->fromFileName;
  }
  /**
   * gdata
   *
   * @param string $fromFusionId
   */
  public function setFromFusionId($fromFusionId)
  {
    $this->fromFusionId = $fromFusionId;
  }
  /**
   * @return string
   */
  public function getFromFusionId()
  {
    return $this->fromFusionId;
  }
  /**
   * gdata
   *
   * @param string $fromHeader
   */
  public function setFromHeader($fromHeader)
  {
    $this->fromHeader = $fromHeader;
  }
  /**
   * @return string
   */
  public function getFromHeader()
  {
    return $this->fromHeader;
  }
  /**
   * gdata
   *
   * @param string $fromUrlPath
   */
  public function setFromUrlPath($fromUrlPath)
  {
    $this->fromUrlPath = $fromUrlPath;
  }
  /**
   * @return string
   */
  public function getFromUrlPath()
  {
    return $this->fromUrlPath;
  }
  /**
   * gdata
   *
   * @param string $fusionIdDetectionMetadata
   */
  public function setFusionIdDetectionMetadata($fusionIdDetectionMetadata)
  {
    $this->fusionIdDetectionMetadata = $fusionIdDetectionMetadata;
  }
  /**
   * @return string
   */
  public function getFusionIdDetectionMetadata()
  {
    return $this->fusionIdDetectionMetadata;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GdataContentTypeInfo::class, 'Google_Service_YouTubeReporting_GdataContentTypeInfo');
← Back