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\Apigee;
|
---|
19 |
|
---|
20 | class GoogleCloudApigeeV1ApiDocDocumentation extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $graphqlDocumentationType = GoogleCloudApigeeV1GraphqlDocumentation::class;
|
---|
23 | protected $graphqlDocumentationDataType = '';
|
---|
24 | protected $oasDocumentationType = GoogleCloudApigeeV1OASDocumentation::class;
|
---|
25 | protected $oasDocumentationDataType = '';
|
---|
26 |
|
---|
27 | /**
|
---|
28 | * @param GoogleCloudApigeeV1GraphqlDocumentation
|
---|
29 | */
|
---|
30 | public function setGraphqlDocumentation(GoogleCloudApigeeV1GraphqlDocumentation $graphqlDocumentation)
|
---|
31 | {
|
---|
32 | $this->graphqlDocumentation = $graphqlDocumentation;
|
---|
33 | }
|
---|
34 | /**
|
---|
35 | * @return GoogleCloudApigeeV1GraphqlDocumentation
|
---|
36 | */
|
---|
37 | public function getGraphqlDocumentation()
|
---|
38 | {
|
---|
39 | return $this->graphqlDocumentation;
|
---|
40 | }
|
---|
41 | /**
|
---|
42 | * @param GoogleCloudApigeeV1OASDocumentation
|
---|
43 | */
|
---|
44 | public function setOasDocumentation(GoogleCloudApigeeV1OASDocumentation $oasDocumentation)
|
---|
45 | {
|
---|
46 | $this->oasDocumentation = $oasDocumentation;
|
---|
47 | }
|
---|
48 | /**
|
---|
49 | * @return GoogleCloudApigeeV1OASDocumentation
|
---|
50 | */
|
---|
51 | public function getOasDocumentation()
|
---|
52 | {
|
---|
53 | return $this->oasDocumentation;
|
---|
54 | }
|
---|
55 | }
|
---|
56 |
|
---|
57 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
58 | class_alias(GoogleCloudApigeeV1ApiDocDocumentation::class, 'Google_Service_Apigee_GoogleCloudApigeeV1ApiDocDocumentation');
|
---|