source: vendor/google/apiclient-services/src/Apigee/GoogleCloudApigeeV1Access.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload new project files

  • Property mode set to 100644
File size: 2.0 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\Apigee;
19
20class GoogleCloudApigeeV1Access extends \Google\Model
21{
22 protected $internal_gapi_mappings = [
23 "get" => "Get",
24 "remove" => "Remove",
25 "set" => "Set",
26 ];
27 protected $getType = GoogleCloudApigeeV1AccessGet::class;
28 protected $getDataType = '';
29 protected $removeType = GoogleCloudApigeeV1AccessRemove::class;
30 protected $removeDataType = '';
31 protected $setType = GoogleCloudApigeeV1AccessSet::class;
32 protected $setDataType = '';
33
34 /**
35 * @param GoogleCloudApigeeV1AccessGet
36 */
37 public function setGet(GoogleCloudApigeeV1AccessGet $get)
38 {
39 $this->get = $get;
40 }
41 /**
42 * @return GoogleCloudApigeeV1AccessGet
43 */
44 public function getGet()
45 {
46 return $this->get;
47 }
48 /**
49 * @param GoogleCloudApigeeV1AccessRemove
50 */
51 public function setRemove(GoogleCloudApigeeV1AccessRemove $remove)
52 {
53 $this->remove = $remove;
54 }
55 /**
56 * @return GoogleCloudApigeeV1AccessRemove
57 */
58 public function getRemove()
59 {
60 return $this->remove;
61 }
62 /**
63 * @param GoogleCloudApigeeV1AccessSet
64 */
65 public function setSet(GoogleCloudApigeeV1AccessSet $set)
66 {
67 $this->set = $set;
68 }
69 /**
70 * @return GoogleCloudApigeeV1AccessSet
71 */
72 public function getSet()
73 {
74 return $this->set;
75 }
76}
77
78// Adding a class alias for backwards compatibility with the previous class name.
79class_alias(GoogleCloudApigeeV1Access::class, 'Google_Service_Apigee_GoogleCloudApigeeV1Access');
Note: See TracBrowser for help on using the repository browser.