📂 File Browser

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

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 Availability.php
▶ Open 📄 View Source
🐘 Conversion.php
▶ Open 📄 View Source
🐘 ConversionList.php
▶ Open 📄 View Source
🐘 CustomDimension.php
▶ Open 📄 View Source
🐘 CustomMetric.php
▶ Open 📄 View Source
🐘 IdMappingFile.php
▶ Open 📄 View Source
🐘 Report.php
▶ Open 📄 View Source
🐘 ReportApiColumnSpec.php
▶ Open 📄 View Source
🐘 ReportFiles.php
▶ Open 📄 View Source
🐘 ReportRequest.php
▶ Open 📄 View Source
🐘 ReportRequestFilters.php
▶ Open 📄 View Source
🐘 ReportRequestOrderBy.php
▶ Open 📄 View Source
🐘 ReportRequestReportScope.php
▶ Open 📄 View Source
🐘 ReportRequestTimeRange.php
▶ Open 📄 View Source
🐘 SavedColumn.php
▶ Open 📄 View Source
🐘 SavedColumnList.php
▶ Open 📄 View Source
🐘 UpdateAvailabilityRequest.php
▶ Open 📄 View Source
🐘 UpdateAvailabilityResponse.php
▶ Open 📄 View Source

📄 Source: SavedColumn.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\Doubleclicksearch;

class SavedColumn extends \Google\Model
{
  /**
   * Identifies this as a SavedColumn resource. Value: the fixed string
   * doubleclicksearch#savedColumn.
   *
   * @var string
   */
  public $kind;
  /**
   * The name of the saved column.
   *
   * @var string
   */
  public $savedColumnName;
  /**
   * The type of data this saved column will produce.
   *
   * @var string
   */
  public $type;

  /**
   * Identifies this as a SavedColumn resource. Value: the fixed string
   * doubleclicksearch#savedColumn.
   *
   * @param string $kind
   */
  public function setKind($kind)
  {
    $this->kind = $kind;
  }
  /**
   * @return string
   */
  public function getKind()
  {
    return $this->kind;
  }
  /**
   * The name of the saved column.
   *
   * @param string $savedColumnName
   */
  public function setSavedColumnName($savedColumnName)
  {
    $this->savedColumnName = $savedColumnName;
  }
  /**
   * @return string
   */
  public function getSavedColumnName()
  {
    return $this->savedColumnName;
  }
  /**
   * The type of data this saved column will produce.
   *
   * @param string $type
   */
  public function setType($type)
  {
    $this->type = $type;
  }
  /**
   * @return string
   */
  public function getType()
  {
    return $this->type;
  }
}

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