source: vendor/google/apiclient-services/src/RecaptchaEnterprise/GoogleCloudRecaptchaenterpriseV1Key.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.9 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\RecaptchaEnterprise;
19
20class GoogleCloudRecaptchaenterpriseV1Key extends \Google\Model
21{
22 protected $androidSettingsType = GoogleCloudRecaptchaenterpriseV1AndroidKeySettings::class;
23 protected $androidSettingsDataType = '';
24 /**
25 * @var string
26 */
27 public $createTime;
28 /**
29 * @var string
30 */
31 public $displayName;
32 protected $expressSettingsType = GoogleCloudRecaptchaenterpriseV1ExpressKeySettings::class;
33 protected $expressSettingsDataType = '';
34 protected $iosSettingsType = GoogleCloudRecaptchaenterpriseV1IOSKeySettings::class;
35 protected $iosSettingsDataType = '';
36 /**
37 * @var string[]
38 */
39 public $labels;
40 /**
41 * @var string
42 */
43 public $name;
44 protected $testingOptionsType = GoogleCloudRecaptchaenterpriseV1TestingOptions::class;
45 protected $testingOptionsDataType = '';
46 protected $wafSettingsType = GoogleCloudRecaptchaenterpriseV1WafSettings::class;
47 protected $wafSettingsDataType = '';
48 protected $webSettingsType = GoogleCloudRecaptchaenterpriseV1WebKeySettings::class;
49 protected $webSettingsDataType = '';
50
51 /**
52 * @param GoogleCloudRecaptchaenterpriseV1AndroidKeySettings
53 */
54 public function setAndroidSettings(GoogleCloudRecaptchaenterpriseV1AndroidKeySettings $androidSettings)
55 {
56 $this->androidSettings = $androidSettings;
57 }
58 /**
59 * @return GoogleCloudRecaptchaenterpriseV1AndroidKeySettings
60 */
61 public function getAndroidSettings()
62 {
63 return $this->androidSettings;
64 }
65 /**
66 * @param string
67 */
68 public function setCreateTime($createTime)
69 {
70 $this->createTime = $createTime;
71 }
72 /**
73 * @return string
74 */
75 public function getCreateTime()
76 {
77 return $this->createTime;
78 }
79 /**
80 * @param string
81 */
82 public function setDisplayName($displayName)
83 {
84 $this->displayName = $displayName;
85 }
86 /**
87 * @return string
88 */
89 public function getDisplayName()
90 {
91 return $this->displayName;
92 }
93 /**
94 * @param GoogleCloudRecaptchaenterpriseV1ExpressKeySettings
95 */
96 public function setExpressSettings(GoogleCloudRecaptchaenterpriseV1ExpressKeySettings $expressSettings)
97 {
98 $this->expressSettings = $expressSettings;
99 }
100 /**
101 * @return GoogleCloudRecaptchaenterpriseV1ExpressKeySettings
102 */
103 public function getExpressSettings()
104 {
105 return $this->expressSettings;
106 }
107 /**
108 * @param GoogleCloudRecaptchaenterpriseV1IOSKeySettings
109 */
110 public function setIosSettings(GoogleCloudRecaptchaenterpriseV1IOSKeySettings $iosSettings)
111 {
112 $this->iosSettings = $iosSettings;
113 }
114 /**
115 * @return GoogleCloudRecaptchaenterpriseV1IOSKeySettings
116 */
117 public function getIosSettings()
118 {
119 return $this->iosSettings;
120 }
121 /**
122 * @param string[]
123 */
124 public function setLabels($labels)
125 {
126 $this->labels = $labels;
127 }
128 /**
129 * @return string[]
130 */
131 public function getLabels()
132 {
133 return $this->labels;
134 }
135 /**
136 * @param string
137 */
138 public function setName($name)
139 {
140 $this->name = $name;
141 }
142 /**
143 * @return string
144 */
145 public function getName()
146 {
147 return $this->name;
148 }
149 /**
150 * @param GoogleCloudRecaptchaenterpriseV1TestingOptions
151 */
152 public function setTestingOptions(GoogleCloudRecaptchaenterpriseV1TestingOptions $testingOptions)
153 {
154 $this->testingOptions = $testingOptions;
155 }
156 /**
157 * @return GoogleCloudRecaptchaenterpriseV1TestingOptions
158 */
159 public function getTestingOptions()
160 {
161 return $this->testingOptions;
162 }
163 /**
164 * @param GoogleCloudRecaptchaenterpriseV1WafSettings
165 */
166 public function setWafSettings(GoogleCloudRecaptchaenterpriseV1WafSettings $wafSettings)
167 {
168 $this->wafSettings = $wafSettings;
169 }
170 /**
171 * @return GoogleCloudRecaptchaenterpriseV1WafSettings
172 */
173 public function getWafSettings()
174 {
175 return $this->wafSettings;
176 }
177 /**
178 * @param GoogleCloudRecaptchaenterpriseV1WebKeySettings
179 */
180 public function setWebSettings(GoogleCloudRecaptchaenterpriseV1WebKeySettings $webSettings)
181 {
182 $this->webSettings = $webSettings;
183 }
184 /**
185 * @return GoogleCloudRecaptchaenterpriseV1WebKeySettings
186 */
187 public function getWebSettings()
188 {
189 return $this->webSettings;
190 }
191}
192
193// Adding a class alias for backwards compatibility with the previous class name.
194class_alias(GoogleCloudRecaptchaenterpriseV1Key::class, 'Google_Service_RecaptchaEnterprise_GoogleCloudRecaptchaenterpriseV1Key');
Note: See TracBrowser for help on using the repository browser.