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_CreativeGroup extends Google_Model
19{
20  public $accountId;
21  public $advertiserId;
22  protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
23  protected $advertiserIdDimensionValueDataType = '';
24  public $groupNumber;
25  public $id;
26  public $kind;
27  public $name;
28  public $subaccountId;
29
30  public function setAccountId($accountId)
31  {
32    $this->accountId = $accountId;
33  }
34  public function getAccountId()
35  {
36    return $this->accountId;
37  }
38  public function setAdvertiserId($advertiserId)
39  {
40    $this->advertiserId = $advertiserId;
41  }
42  public function getAdvertiserId()
43  {
44    return $this->advertiserId;
45  }
46  /**
47   * @param Google_Service_Dfareporting_DimensionValue
48   */
49  public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
50  {
51    $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
52  }
53  /**
54   * @return Google_Service_Dfareporting_DimensionValue
55   */
56  public function getAdvertiserIdDimensionValue()
57  {
58    return $this->advertiserIdDimensionValue;
59  }
60  public function setGroupNumber($groupNumber)
61  {
62    $this->groupNumber = $groupNumber;
63  }
64  public function getGroupNumber()
65  {
66    return $this->groupNumber;
67  }
68  public function setId($id)
69  {
70    $this->id = $id;
71  }
72  public function getId()
73  {
74    return $this->id;
75  }
76  public function setKind($kind)
77  {
78    $this->kind = $kind;
79  }
80  public function getKind()
81  {
82    return $this->kind;
83  }
84  public function setName($name)
85  {
86    $this->name = $name;
87  }
88  public function getName()
89  {
90    return $this->name;
91  }
92  public function setSubaccountId($subaccountId)
93  {
94    $this->subaccountId = $subaccountId;
95  }
96  public function getSubaccountId()
97  {
98    return $this->subaccountId;
99  }
100}
101