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\ContainerAnalysis;
19 
20 class DocumentOccurrence extends \Google\Collection
21 {
22   protected $collection_key = 'externalDocumentRefs';
23   public $createTime;
24   public $creatorComment;
25   public $creators;
26   public $documentComment;
27   public $externalDocumentRefs;
28   public $id;
29   public $licenseListVersion;
30   public $namespace;
31   public $title;
32 
33   public function setCreateTime($createTime)
34   {
35     $this->createTime = $createTime;
36   }
37   public function getCreateTime()
38   {
39     return $this->createTime;
40   }
41   public function setCreatorComment($creatorComment)
42   {
43     $this->creatorComment = $creatorComment;
44   }
45   public function getCreatorComment()
46   {
47     return $this->creatorComment;
48   }
49   public function setCreators($creators)
50   {
51     $this->creators = $creators;
52   }
53   public function getCreators()
54   {
55     return $this->creators;
56   }
57   public function setDocumentComment($documentComment)
58   {
59     $this->documentComment = $documentComment;
60   }
61   public function getDocumentComment()
62   {
63     return $this->documentComment;
64   }
65   public function setExternalDocumentRefs($externalDocumentRefs)
66   {
67     $this->externalDocumentRefs = $externalDocumentRefs;
68   }
69   public function getExternalDocumentRefs()
70   {
71     return $this->externalDocumentRefs;
72   }
73   public function setId($id)
74   {
75     $this->id = $id;
76   }
77   public function getId()
78   {
79     return $this->id;
80   }
81   public function setLicenseListVersion($licenseListVersion)
82   {
83     $this->licenseListVersion = $licenseListVersion;
84   }
85   public function getLicenseListVersion()
86   {
87     return $this->licenseListVersion;
88   }
89   public function setNamespace($namespace)
90   {
91     $this->namespace = $namespace;
92   }
93   public function getNamespace()
94   {
95     return $this->namespace;
96   }
97   public function setTitle($title)
98   {
99     $this->title = $title;
100   }
101   public function getTitle()
102   {
103     return $this->title;
104   }
105 }
106 
107 // Adding a class alias for backwards compatibility with the previous class name.
108 class_alias(DocumentOccurrence::class, 'Google_Service_ContainerAnalysis_DocumentOccurrence');
109