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 |
|
---|
18 | namespace Google\Service\AdExchangeBuyer\Resource;
|
---|
19 |
|
---|
20 | use Google\Service\AdExchangeBuyer\Budget as BudgetModel;
|
---|
21 |
|
---|
22 | /**
|
---|
23 | * The "budget" collection of methods.
|
---|
24 | * Typical usage is:
|
---|
25 | * <code>
|
---|
26 | * $adexchangebuyerService = new Google\Service\AdExchangeBuyer(...);
|
---|
27 | * $budget = $adexchangebuyerService->budget;
|
---|
28 | * </code>
|
---|
29 | */
|
---|
30 | class Budget extends \Google\Service\Resource
|
---|
31 | {
|
---|
32 | /**
|
---|
33 | * Returns the budget information for the adgroup specified by the accountId and
|
---|
34 | * billingId. (budget.get)
|
---|
35 | *
|
---|
36 | * @param string $accountId The account id to get the budget information for.
|
---|
37 | * @param string $billingId The billing id to get the budget information for.
|
---|
38 | * @param array $optParams Optional parameters.
|
---|
39 | * @return BudgetModel
|
---|
40 | */
|
---|
41 | public function get($accountId, $billingId, $optParams = [])
|
---|
42 | {
|
---|
43 | $params = ['accountId' => $accountId, 'billingId' => $billingId];
|
---|
44 | $params = array_merge($params, $optParams);
|
---|
45 | return $this->call('get', [$params], BudgetModel::class);
|
---|
46 | }
|
---|
47 | /**
|
---|
48 | * Updates the budget amount for the budget of the adgroup specified by the
|
---|
49 | * accountId and billingId, with the budget amount in the request. This method
|
---|
50 | * supports patch semantics. (budget.patch)
|
---|
51 | *
|
---|
52 | * @param string $accountId The account id associated with the budget being
|
---|
53 | * updated.
|
---|
54 | * @param string $billingId The billing id associated with the budget being
|
---|
55 | * updated.
|
---|
56 | * @param BudgetModel $postBody
|
---|
57 | * @param array $optParams Optional parameters.
|
---|
58 | * @return BudgetModel
|
---|
59 | */
|
---|
60 | public function patch($accountId, $billingId, BudgetModel $postBody, $optParams = [])
|
---|
61 | {
|
---|
62 | $params = ['accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody];
|
---|
63 | $params = array_merge($params, $optParams);
|
---|
64 | return $this->call('patch', [$params], BudgetModel::class);
|
---|
65 | }
|
---|
66 | /**
|
---|
67 | * Updates the budget amount for the budget of the adgroup specified by the
|
---|
68 | * accountId and billingId, with the budget amount in the request.
|
---|
69 | * (budget.update)
|
---|
70 | *
|
---|
71 | * @param string $accountId The account id associated with the budget being
|
---|
72 | * updated.
|
---|
73 | * @param string $billingId The billing id associated with the budget being
|
---|
74 | * updated.
|
---|
75 | * @param BudgetModel $postBody
|
---|
76 | * @param array $optParams Optional parameters.
|
---|
77 | * @return BudgetModel
|
---|
78 | */
|
---|
79 | public function update($accountId, $billingId, BudgetModel $postBody, $optParams = [])
|
---|
80 | {
|
---|
81 | $params = ['accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody];
|
---|
82 | $params = array_merge($params, $optParams);
|
---|
83 | return $this->call('update', [$params], BudgetModel::class);
|
---|
84 | }
|
---|
85 | }
|
---|
86 |
|
---|
87 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
88 | class_alias(Budget::class, 'Google_Service_AdExchangeBuyer_Resource_Budget');
|
---|