1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_Dfareporting_CreativeField extends Google_Model
19{
20  public $accountId;
21  public $advertiserId;
22  protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
23  protected $advertiserIdDimensionValueDataType = '';
24  public $id;
25  public $kind;
26  public $name;
27  public $subaccountId;
28
29  public function setAccountId($accountId)
30  {
31    $this->accountId = $accountId;
32  }
33  public function getAccountId()
34  {
35    return $this->accountId;
36  }
37  public function setAdvertiserId($advertiserId)
38  {
39    $this->advertiserId = $advertiserId;
40  }
41  public function getAdvertiserId()
42  {
43    return $this->advertiserId;
44  }
45  /**
46   * @param Google_Service_Dfareporting_DimensionValue
47   */
48  public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
49  {
50    $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
51  }
52  /**
53   * @return Google_Service_Dfareporting_DimensionValue
54   */
55  public function getAdvertiserIdDimensionValue()
56  {
57    return $this->advertiserIdDimensionValue;
58  }
59  public function setId($id)
60  {
61    $this->id = $id;
62  }
63  public function getId()
64  {
65    return $this->id;
66  }
67  public function setKind($kind)
68  {
69    $this->kind = $kind;
70  }
71  public function getKind()
72  {
73    return $this->kind;
74  }
75  public function setName($name)
76  {
77    $this->name = $name;
78  }
79  public function getName()
80  {
81    return $this->name;
82  }
83  public function setSubaccountId($subaccountId)
84  {
85    $this->subaccountId = $subaccountId;
86  }
87  public function getSubaccountId()
88  {
89    return $this->subaccountId;
90  }
91}
92