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\Vault; 19 20class Export extends \Google\Model 21{ 22 protected $cloudStorageSinkType = CloudStorageSink::class; 23 protected $cloudStorageSinkDataType = ''; 24 /** 25 * @var string 26 */ 27 public $createTime; 28 protected $exportOptionsType = ExportOptions::class; 29 protected $exportOptionsDataType = ''; 30 /** 31 * @var string 32 */ 33 public $id; 34 /** 35 * @var string 36 */ 37 public $matterId; 38 /** 39 * @var string 40 */ 41 public $name; 42 protected $queryType = Query::class; 43 protected $queryDataType = ''; 44 protected $requesterType = UserInfo::class; 45 protected $requesterDataType = ''; 46 protected $statsType = ExportStats::class; 47 protected $statsDataType = ''; 48 /** 49 * @var string 50 */ 51 public $status; 52 53 /** 54 * @param CloudStorageSink 55 */ 56 public function setCloudStorageSink(CloudStorageSink $cloudStorageSink) 57 { 58 $this->cloudStorageSink = $cloudStorageSink; 59 } 60 /** 61 * @return CloudStorageSink 62 */ 63 public function getCloudStorageSink() 64 { 65 return $this->cloudStorageSink; 66 } 67 /** 68 * @param string 69 */ 70 public function setCreateTime($createTime) 71 { 72 $this->createTime = $createTime; 73 } 74 /** 75 * @return string 76 */ 77 public function getCreateTime() 78 { 79 return $this->createTime; 80 } 81 /** 82 * @param ExportOptions 83 */ 84 public function setExportOptions(ExportOptions $exportOptions) 85 { 86 $this->exportOptions = $exportOptions; 87 } 88 /** 89 * @return ExportOptions 90 */ 91 public function getExportOptions() 92 { 93 return $this->exportOptions; 94 } 95 /** 96 * @param string 97 */ 98 public function setId($id) 99 { 100 $this->id = $id; 101 } 102 /** 103 * @return string 104 */ 105 public function getId() 106 { 107 return $this->id; 108 } 109 /** 110 * @param string 111 */ 112 public function setMatterId($matterId) 113 { 114 $this->matterId = $matterId; 115 } 116 /** 117 * @return string 118 */ 119 public function getMatterId() 120 { 121 return $this->matterId; 122 } 123 /** 124 * @param string 125 */ 126 public function setName($name) 127 { 128 $this->name = $name; 129 } 130 /** 131 * @return string 132 */ 133 public function getName() 134 { 135 return $this->name; 136 } 137 /** 138 * @param Query 139 */ 140 public function setQuery(Query $query) 141 { 142 $this->query = $query; 143 } 144 /** 145 * @return Query 146 */ 147 public function getQuery() 148 { 149 return $this->query; 150 } 151 /** 152 * @param UserInfo 153 */ 154 public function setRequester(UserInfo $requester) 155 { 156 $this->requester = $requester; 157 } 158 /** 159 * @return UserInfo 160 */ 161 public function getRequester() 162 { 163 return $this->requester; 164 } 165 /** 166 * @param ExportStats 167 */ 168 public function setStats(ExportStats $stats) 169 { 170 $this->stats = $stats; 171 } 172 /** 173 * @return ExportStats 174 */ 175 public function getStats() 176 { 177 return $this->stats; 178 } 179 /** 180 * @param string 181 */ 182 public function setStatus($status) 183 { 184 $this->status = $status; 185 } 186 /** 187 * @return string 188 */ 189 public function getStatus() 190 { 191 return $this->status; 192 } 193} 194 195// Adding a class alias for backwards compatibility with the previous class name. 196class_alias(Export::class, 'Google_Service_Vault_Export'); 197