source: vendor/google/apiclient-services/src/Bigquery/DifferentialPrivacyPolicy.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 2.8 KB
Line 
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\Bigquery;
19
20class DifferentialPrivacyPolicy extends \Google\Model
21{
22 public $deltaBudget;
23 public $deltaBudgetRemaining;
24 public $deltaPerQuery;
25 public $epsilonBudget;
26 public $epsilonBudgetRemaining;
27 public $maxEpsilonPerQuery;
28 /**
29 * @var string
30 */
31 public $maxGroupsContributed;
32 /**
33 * @var string
34 */
35 public $privacyUnitColumn;
36
37 public function setDeltaBudget($deltaBudget)
38 {
39 $this->deltaBudget = $deltaBudget;
40 }
41 public function getDeltaBudget()
42 {
43 return $this->deltaBudget;
44 }
45 public function setDeltaBudgetRemaining($deltaBudgetRemaining)
46 {
47 $this->deltaBudgetRemaining = $deltaBudgetRemaining;
48 }
49 public function getDeltaBudgetRemaining()
50 {
51 return $this->deltaBudgetRemaining;
52 }
53 public function setDeltaPerQuery($deltaPerQuery)
54 {
55 $this->deltaPerQuery = $deltaPerQuery;
56 }
57 public function getDeltaPerQuery()
58 {
59 return $this->deltaPerQuery;
60 }
61 public function setEpsilonBudget($epsilonBudget)
62 {
63 $this->epsilonBudget = $epsilonBudget;
64 }
65 public function getEpsilonBudget()
66 {
67 return $this->epsilonBudget;
68 }
69 public function setEpsilonBudgetRemaining($epsilonBudgetRemaining)
70 {
71 $this->epsilonBudgetRemaining = $epsilonBudgetRemaining;
72 }
73 public function getEpsilonBudgetRemaining()
74 {
75 return $this->epsilonBudgetRemaining;
76 }
77 public function setMaxEpsilonPerQuery($maxEpsilonPerQuery)
78 {
79 $this->maxEpsilonPerQuery = $maxEpsilonPerQuery;
80 }
81 public function getMaxEpsilonPerQuery()
82 {
83 return $this->maxEpsilonPerQuery;
84 }
85 /**
86 * @param string
87 */
88 public function setMaxGroupsContributed($maxGroupsContributed)
89 {
90 $this->maxGroupsContributed = $maxGroupsContributed;
91 }
92 /**
93 * @return string
94 */
95 public function getMaxGroupsContributed()
96 {
97 return $this->maxGroupsContributed;
98 }
99 /**
100 * @param string
101 */
102 public function setPrivacyUnitColumn($privacyUnitColumn)
103 {
104 $this->privacyUnitColumn = $privacyUnitColumn;
105 }
106 /**
107 * @return string
108 */
109 public function getPrivacyUnitColumn()
110 {
111 return $this->privacyUnitColumn;
112 }
113}
114
115// Adding a class alias for backwards compatibility with the previous class name.
116class_alias(DifferentialPrivacyPolicy::class, 'Google_Service_Bigquery_DifferentialPrivacyPolicy');
Note: See TracBrowser for help on using the repository browser.