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
18class Google_Service_Apigee_GoogleCloudApigeeV1SharedFlowRevision extends Google_Collection
19{
20  protected $collection_key = 'sharedFlows';
21  protected $configurationVersionType = 'Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion';
22  protected $configurationVersionDataType = '';
23  public $contextInfo;
24  public $createdAt;
25  public $description;
26  public $displayName;
27  public $entityMetaDataAsProperties;
28  public $lastModifiedAt;
29  public $name;
30  public $policies;
31  protected $resourceFilesType = 'Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles';
32  protected $resourceFilesDataType = '';
33  public $resources;
34  public $revision;
35  public $sharedFlows;
36  public $type;
37
38  /**
39   * @param Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion
40   */
41  public function setConfigurationVersion(Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion $configurationVersion)
42  {
43    $this->configurationVersion = $configurationVersion;
44  }
45  /**
46   * @return Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion
47   */
48  public function getConfigurationVersion()
49  {
50    return $this->configurationVersion;
51  }
52  public function setContextInfo($contextInfo)
53  {
54    $this->contextInfo = $contextInfo;
55  }
56  public function getContextInfo()
57  {
58    return $this->contextInfo;
59  }
60  public function setCreatedAt($createdAt)
61  {
62    $this->createdAt = $createdAt;
63  }
64  public function getCreatedAt()
65  {
66    return $this->createdAt;
67  }
68  public function setDescription($description)
69  {
70    $this->description = $description;
71  }
72  public function getDescription()
73  {
74    return $this->description;
75  }
76  public function setDisplayName($displayName)
77  {
78    $this->displayName = $displayName;
79  }
80  public function getDisplayName()
81  {
82    return $this->displayName;
83  }
84  public function setEntityMetaDataAsProperties($entityMetaDataAsProperties)
85  {
86    $this->entityMetaDataAsProperties = $entityMetaDataAsProperties;
87  }
88  public function getEntityMetaDataAsProperties()
89  {
90    return $this->entityMetaDataAsProperties;
91  }
92  public function setLastModifiedAt($lastModifiedAt)
93  {
94    $this->lastModifiedAt = $lastModifiedAt;
95  }
96  public function getLastModifiedAt()
97  {
98    return $this->lastModifiedAt;
99  }
100  public function setName($name)
101  {
102    $this->name = $name;
103  }
104  public function getName()
105  {
106    return $this->name;
107  }
108  public function setPolicies($policies)
109  {
110    $this->policies = $policies;
111  }
112  public function getPolicies()
113  {
114    return $this->policies;
115  }
116  /**
117   * @param Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles
118   */
119  public function setResourceFiles(Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles $resourceFiles)
120  {
121    $this->resourceFiles = $resourceFiles;
122  }
123  /**
124   * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles
125   */
126  public function getResourceFiles()
127  {
128    return $this->resourceFiles;
129  }
130  public function setResources($resources)
131  {
132    $this->resources = $resources;
133  }
134  public function getResources()
135  {
136    return $this->resources;
137  }
138  public function setRevision($revision)
139  {
140    $this->revision = $revision;
141  }
142  public function getRevision()
143  {
144    return $this->revision;
145  }
146  public function setSharedFlows($sharedFlows)
147  {
148    $this->sharedFlows = $sharedFlows;
149  }
150  public function getSharedFlows()
151  {
152    return $this->sharedFlows;
153  }
154  public function setType($type)
155  {
156    $this->type = $type;
157  }
158  public function getType()
159  {
160    return $this->type;
161  }
162}
163