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_UserProfile extends Google_Model
19{
20  public $accountId;
21  public $accountName;
22  public $etag;
23  public $kind;
24  public $profileId;
25  public $subAccountId;
26  public $subAccountName;
27  public $userName;
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 setAccountName($accountName)
38  {
39    $this->accountName = $accountName;
40  }
41  public function getAccountName()
42  {
43    return $this->accountName;
44  }
45  public function setEtag($etag)
46  {
47    $this->etag = $etag;
48  }
49  public function getEtag()
50  {
51    return $this->etag;
52  }
53  public function setKind($kind)
54  {
55    $this->kind = $kind;
56  }
57  public function getKind()
58  {
59    return $this->kind;
60  }
61  public function setProfileId($profileId)
62  {
63    $this->profileId = $profileId;
64  }
65  public function getProfileId()
66  {
67    return $this->profileId;
68  }
69  public function setSubAccountId($subAccountId)
70  {
71    $this->subAccountId = $subAccountId;
72  }
73  public function getSubAccountId()
74  {
75    return $this->subAccountId;
76  }
77  public function setSubAccountName($subAccountName)
78  {
79    $this->subAccountName = $subAccountName;
80  }
81  public function getSubAccountName()
82  {
83    return $this->subAccountName;
84  }
85  public function setUserName($userName)
86  {
87    $this->userName = $userName;
88  }
89  public function getUserName()
90  {
91    return $this->userName;
92  }
93}
94