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
18namespace Google\Service\AdExchangeBuyer;
19
20class Budget extends \Google\Model
21{
22  public $accountId;
23  public $billingId;
24  public $budgetAmount;
25  public $currencyCode;
26  public $id;
27  public $kind;
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 setBillingId($billingId)
38  {
39    $this->billingId = $billingId;
40  }
41  public function getBillingId()
42  {
43    return $this->billingId;
44  }
45  public function setBudgetAmount($budgetAmount)
46  {
47    $this->budgetAmount = $budgetAmount;
48  }
49  public function getBudgetAmount()
50  {
51    return $this->budgetAmount;
52  }
53  public function setCurrencyCode($currencyCode)
54  {
55    $this->currencyCode = $currencyCode;
56  }
57  public function getCurrencyCode()
58  {
59    return $this->currencyCode;
60  }
61  public function setId($id)
62  {
63    $this->id = $id;
64  }
65  public function getId()
66  {
67    return $this->id;
68  }
69  public function setKind($kind)
70  {
71    $this->kind = $kind;
72  }
73  public function getKind()
74  {
75    return $this->kind;
76  }
77}
78
79// Adding a class alias for backwards compatibility with the previous class name.
80class_alias(Budget::class, 'Google_Service_AdExchangeBuyer_Budget');
81