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_MyBusinessAccountManagement_Account extends Google_Model
19{
20  public $accountName;
21  public $accountNumber;
22  public $name;
23  protected $organizationInfoType = 'Google_Service_MyBusinessAccountManagement_OrganizationInfo';
24  protected $organizationInfoDataType = '';
25  public $permissionLevel;
26  public $primaryOwner;
27  public $role;
28  public $type;
29  public $verificationState;
30  public $vettedState;
31
32  public function setAccountName($accountName)
33  {
34    $this->accountName = $accountName;
35  }
36  public function getAccountName()
37  {
38    return $this->accountName;
39  }
40  public function setAccountNumber($accountNumber)
41  {
42    $this->accountNumber = $accountNumber;
43  }
44  public function getAccountNumber()
45  {
46    return $this->accountNumber;
47  }
48  public function setName($name)
49  {
50    $this->name = $name;
51  }
52  public function getName()
53  {
54    return $this->name;
55  }
56  /**
57   * @param Google_Service_MyBusinessAccountManagement_OrganizationInfo
58   */
59  public function setOrganizationInfo(Google_Service_MyBusinessAccountManagement_OrganizationInfo $organizationInfo)
60  {
61    $this->organizationInfo = $organizationInfo;
62  }
63  /**
64   * @return Google_Service_MyBusinessAccountManagement_OrganizationInfo
65   */
66  public function getOrganizationInfo()
67  {
68    return $this->organizationInfo;
69  }
70  public function setPermissionLevel($permissionLevel)
71  {
72    $this->permissionLevel = $permissionLevel;
73  }
74  public function getPermissionLevel()
75  {
76    return $this->permissionLevel;
77  }
78  public function setPrimaryOwner($primaryOwner)
79  {
80    $this->primaryOwner = $primaryOwner;
81  }
82  public function getPrimaryOwner()
83  {
84    return $this->primaryOwner;
85  }
86  public function setRole($role)
87  {
88    $this->role = $role;
89  }
90  public function getRole()
91  {
92    return $this->role;
93  }
94  public function setType($type)
95  {
96    $this->type = $type;
97  }
98  public function getType()
99  {
100    return $this->type;
101  }
102  public function setVerificationState($verificationState)
103  {
104    $this->verificationState = $verificationState;
105  }
106  public function getVerificationState()
107  {
108    return $this->verificationState;
109  }
110  public function setVettedState($vettedState)
111  {
112    $this->vettedState = $vettedState;
113  }
114  public function getVettedState()
115  {
116    return $this->vettedState;
117  }
118}
119