JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "GoogleAdsSearchads360V0ResourcesAdGroupAssetSet.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/SA360/GoogleAdsSearchads360V0ResourcesAdGroupAssetSet.php
File size: 3.33 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\SA360;

class GoogleAdsSearchads360V0ResourcesAdGroupAssetSet extends \Google\Model
{
  /**
   * The status has not been specified.
   */
  public const STATUS_UNSPECIFIED = 'UNSPECIFIED';
  /**
   * The received value is not known in this version. This is a response-only
   * value.
   */
  public const STATUS_UNKNOWN = 'UNKNOWN';
  /**
   * The linkage between asset set and its container is enabled.
   */
  public const STATUS_ENABLED = 'ENABLED';
  /**
   * The linkage between asset set and its container is removed.
   */
  public const STATUS_REMOVED = 'REMOVED';
  /**
   * Immutable. The ad group to which this asset set is linked.
   *
   * @var string
   */
  public $adGroup;
  /**
   * Immutable. The asset set which is linked to the ad group.
   *
   * @var string
   */
  public $assetSet;
  /**
   * Immutable. The resource name of the ad group asset set. Ad group asset set
   * resource names have the form:
   * `customers/{customer_id}/adGroupAssetSets/{ad_group_id}~{asset_set_id}`
   *
   * @var string
   */
  public $resourceName;
  /**
   * Output only. The status of the ad group asset set. Read-only.
   *
   * @var string
   */
  public $status;

  /**
   * Immutable. The ad group to which this asset set is linked.
   *
   * @param string $adGroup
   */
  public function setAdGroup($adGroup)
  {
    $this->adGroup = $adGroup;
  }
  /**
   * @return string
   */
  public function getAdGroup()
  {
    return $this->adGroup;
  }
  /**
   * Immutable. The asset set which is linked to the ad group.
   *
   * @param string $assetSet
   */
  public function setAssetSet($assetSet)
  {
    $this->assetSet = $assetSet;
  }
  /**
   * @return string
   */
  public function getAssetSet()
  {
    return $this->assetSet;
  }
  /**
   * Immutable. The resource name of the ad group asset set. Ad group asset set
   * resource names have the form:
   * `customers/{customer_id}/adGroupAssetSets/{ad_group_id}~{asset_set_id}`
   *
   * @param string $resourceName
   */
  public function setResourceName($resourceName)
  {
    $this->resourceName = $resourceName;
  }
  /**
   * @return string
   */
  public function getResourceName()
  {
    return $this->resourceName;
  }
  /**
   * Output only. The status of the ad group asset set. Read-only.
   *
   * Accepted values: UNSPECIFIED, UNKNOWN, ENABLED, REMOVED
   *
   * @param self::STATUS_* $status
   */
  public function setStatus($status)
  {
    $this->status = $status;
  }
  /**
   * @return self::STATUS_*
   */
  public function getStatus()
  {
    return $this->status;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleAdsSearchads360V0ResourcesAdGroupAssetSet::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ResourcesAdGroupAssetSet');