source: vendor/google/apiclient-services/src/Drive/DriveFileCapabilities.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 14.3 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\Drive;
19
20class DriveFileCapabilities extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $canAcceptOwnership;
26 /**
27 * @var bool
28 */
29 public $canAddChildren;
30 /**
31 * @var bool
32 */
33 public $canAddFolderFromAnotherDrive;
34 /**
35 * @var bool
36 */
37 public $canAddMyDriveParent;
38 /**
39 * @var bool
40 */
41 public $canChangeCopyRequiresWriterPermission;
42 /**
43 * @var bool
44 */
45 public $canChangeSecurityUpdateEnabled;
46 /**
47 * @var bool
48 */
49 public $canChangeViewersCanCopyContent;
50 /**
51 * @var bool
52 */
53 public $canComment;
54 /**
55 * @var bool
56 */
57 public $canCopy;
58 /**
59 * @var bool
60 */
61 public $canDelete;
62 /**
63 * @var bool
64 */
65 public $canDeleteChildren;
66 /**
67 * @var bool
68 */
69 public $canDownload;
70 /**
71 * @var bool
72 */
73 public $canEdit;
74 /**
75 * @var bool
76 */
77 public $canListChildren;
78 /**
79 * @var bool
80 */
81 public $canModifyContent;
82 /**
83 * @var bool
84 */
85 public $canModifyContentRestriction;
86 /**
87 * @var bool
88 */
89 public $canModifyEditorContentRestriction;
90 /**
91 * @var bool
92 */
93 public $canModifyLabels;
94 /**
95 * @var bool
96 */
97 public $canModifyOwnerContentRestriction;
98 /**
99 * @var bool
100 */
101 public $canMoveChildrenOutOfDrive;
102 /**
103 * @var bool
104 */
105 public $canMoveChildrenOutOfTeamDrive;
106 /**
107 * @var bool
108 */
109 public $canMoveChildrenWithinDrive;
110 /**
111 * @var bool
112 */
113 public $canMoveChildrenWithinTeamDrive;
114 /**
115 * @var bool
116 */
117 public $canMoveItemIntoTeamDrive;
118 /**
119 * @var bool
120 */
121 public $canMoveItemOutOfDrive;
122 /**
123 * @var bool
124 */
125 public $canMoveItemOutOfTeamDrive;
126 /**
127 * @var bool
128 */
129 public $canMoveItemWithinDrive;
130 /**
131 * @var bool
132 */
133 public $canMoveItemWithinTeamDrive;
134 /**
135 * @var bool
136 */
137 public $canMoveTeamDriveItem;
138 /**
139 * @var bool
140 */
141 public $canReadDrive;
142 /**
143 * @var bool
144 */
145 public $canReadLabels;
146 /**
147 * @var bool
148 */
149 public $canReadRevisions;
150 /**
151 * @var bool
152 */
153 public $canReadTeamDrive;
154 /**
155 * @var bool
156 */
157 public $canRemoveChildren;
158 /**
159 * @var bool
160 */
161 public $canRemoveContentRestriction;
162 /**
163 * @var bool
164 */
165 public $canRemoveMyDriveParent;
166 /**
167 * @var bool
168 */
169 public $canRename;
170 /**
171 * @var bool
172 */
173 public $canShare;
174 /**
175 * @var bool
176 */
177 public $canTrash;
178 /**
179 * @var bool
180 */
181 public $canTrashChildren;
182 /**
183 * @var bool
184 */
185 public $canUntrash;
186
187 /**
188 * @param bool
189 */
190 public function setCanAcceptOwnership($canAcceptOwnership)
191 {
192 $this->canAcceptOwnership = $canAcceptOwnership;
193 }
194 /**
195 * @return bool
196 */
197 public function getCanAcceptOwnership()
198 {
199 return $this->canAcceptOwnership;
200 }
201 /**
202 * @param bool
203 */
204 public function setCanAddChildren($canAddChildren)
205 {
206 $this->canAddChildren = $canAddChildren;
207 }
208 /**
209 * @return bool
210 */
211 public function getCanAddChildren()
212 {
213 return $this->canAddChildren;
214 }
215 /**
216 * @param bool
217 */
218 public function setCanAddFolderFromAnotherDrive($canAddFolderFromAnotherDrive)
219 {
220 $this->canAddFolderFromAnotherDrive = $canAddFolderFromAnotherDrive;
221 }
222 /**
223 * @return bool
224 */
225 public function getCanAddFolderFromAnotherDrive()
226 {
227 return $this->canAddFolderFromAnotherDrive;
228 }
229 /**
230 * @param bool
231 */
232 public function setCanAddMyDriveParent($canAddMyDriveParent)
233 {
234 $this->canAddMyDriveParent = $canAddMyDriveParent;
235 }
236 /**
237 * @return bool
238 */
239 public function getCanAddMyDriveParent()
240 {
241 return $this->canAddMyDriveParent;
242 }
243 /**
244 * @param bool
245 */
246 public function setCanChangeCopyRequiresWriterPermission($canChangeCopyRequiresWriterPermission)
247 {
248 $this->canChangeCopyRequiresWriterPermission = $canChangeCopyRequiresWriterPermission;
249 }
250 /**
251 * @return bool
252 */
253 public function getCanChangeCopyRequiresWriterPermission()
254 {
255 return $this->canChangeCopyRequiresWriterPermission;
256 }
257 /**
258 * @param bool
259 */
260 public function setCanChangeSecurityUpdateEnabled($canChangeSecurityUpdateEnabled)
261 {
262 $this->canChangeSecurityUpdateEnabled = $canChangeSecurityUpdateEnabled;
263 }
264 /**
265 * @return bool
266 */
267 public function getCanChangeSecurityUpdateEnabled()
268 {
269 return $this->canChangeSecurityUpdateEnabled;
270 }
271 /**
272 * @param bool
273 */
274 public function setCanChangeViewersCanCopyContent($canChangeViewersCanCopyContent)
275 {
276 $this->canChangeViewersCanCopyContent = $canChangeViewersCanCopyContent;
277 }
278 /**
279 * @return bool
280 */
281 public function getCanChangeViewersCanCopyContent()
282 {
283 return $this->canChangeViewersCanCopyContent;
284 }
285 /**
286 * @param bool
287 */
288 public function setCanComment($canComment)
289 {
290 $this->canComment = $canComment;
291 }
292 /**
293 * @return bool
294 */
295 public function getCanComment()
296 {
297 return $this->canComment;
298 }
299 /**
300 * @param bool
301 */
302 public function setCanCopy($canCopy)
303 {
304 $this->canCopy = $canCopy;
305 }
306 /**
307 * @return bool
308 */
309 public function getCanCopy()
310 {
311 return $this->canCopy;
312 }
313 /**
314 * @param bool
315 */
316 public function setCanDelete($canDelete)
317 {
318 $this->canDelete = $canDelete;
319 }
320 /**
321 * @return bool
322 */
323 public function getCanDelete()
324 {
325 return $this->canDelete;
326 }
327 /**
328 * @param bool
329 */
330 public function setCanDeleteChildren($canDeleteChildren)
331 {
332 $this->canDeleteChildren = $canDeleteChildren;
333 }
334 /**
335 * @return bool
336 */
337 public function getCanDeleteChildren()
338 {
339 return $this->canDeleteChildren;
340 }
341 /**
342 * @param bool
343 */
344 public function setCanDownload($canDownload)
345 {
346 $this->canDownload = $canDownload;
347 }
348 /**
349 * @return bool
350 */
351 public function getCanDownload()
352 {
353 return $this->canDownload;
354 }
355 /**
356 * @param bool
357 */
358 public function setCanEdit($canEdit)
359 {
360 $this->canEdit = $canEdit;
361 }
362 /**
363 * @return bool
364 */
365 public function getCanEdit()
366 {
367 return $this->canEdit;
368 }
369 /**
370 * @param bool
371 */
372 public function setCanListChildren($canListChildren)
373 {
374 $this->canListChildren = $canListChildren;
375 }
376 /**
377 * @return bool
378 */
379 public function getCanListChildren()
380 {
381 return $this->canListChildren;
382 }
383 /**
384 * @param bool
385 */
386 public function setCanModifyContent($canModifyContent)
387 {
388 $this->canModifyContent = $canModifyContent;
389 }
390 /**
391 * @return bool
392 */
393 public function getCanModifyContent()
394 {
395 return $this->canModifyContent;
396 }
397 /**
398 * @param bool
399 */
400 public function setCanModifyContentRestriction($canModifyContentRestriction)
401 {
402 $this->canModifyContentRestriction = $canModifyContentRestriction;
403 }
404 /**
405 * @return bool
406 */
407 public function getCanModifyContentRestriction()
408 {
409 return $this->canModifyContentRestriction;
410 }
411 /**
412 * @param bool
413 */
414 public function setCanModifyEditorContentRestriction($canModifyEditorContentRestriction)
415 {
416 $this->canModifyEditorContentRestriction = $canModifyEditorContentRestriction;
417 }
418 /**
419 * @return bool
420 */
421 public function getCanModifyEditorContentRestriction()
422 {
423 return $this->canModifyEditorContentRestriction;
424 }
425 /**
426 * @param bool
427 */
428 public function setCanModifyLabels($canModifyLabels)
429 {
430 $this->canModifyLabels = $canModifyLabels;
431 }
432 /**
433 * @return bool
434 */
435 public function getCanModifyLabels()
436 {
437 return $this->canModifyLabels;
438 }
439 /**
440 * @param bool
441 */
442 public function setCanModifyOwnerContentRestriction($canModifyOwnerContentRestriction)
443 {
444 $this->canModifyOwnerContentRestriction = $canModifyOwnerContentRestriction;
445 }
446 /**
447 * @return bool
448 */
449 public function getCanModifyOwnerContentRestriction()
450 {
451 return $this->canModifyOwnerContentRestriction;
452 }
453 /**
454 * @param bool
455 */
456 public function setCanMoveChildrenOutOfDrive($canMoveChildrenOutOfDrive)
457 {
458 $this->canMoveChildrenOutOfDrive = $canMoveChildrenOutOfDrive;
459 }
460 /**
461 * @return bool
462 */
463 public function getCanMoveChildrenOutOfDrive()
464 {
465 return $this->canMoveChildrenOutOfDrive;
466 }
467 /**
468 * @param bool
469 */
470 public function setCanMoveChildrenOutOfTeamDrive($canMoveChildrenOutOfTeamDrive)
471 {
472 $this->canMoveChildrenOutOfTeamDrive = $canMoveChildrenOutOfTeamDrive;
473 }
474 /**
475 * @return bool
476 */
477 public function getCanMoveChildrenOutOfTeamDrive()
478 {
479 return $this->canMoveChildrenOutOfTeamDrive;
480 }
481 /**
482 * @param bool
483 */
484 public function setCanMoveChildrenWithinDrive($canMoveChildrenWithinDrive)
485 {
486 $this->canMoveChildrenWithinDrive = $canMoveChildrenWithinDrive;
487 }
488 /**
489 * @return bool
490 */
491 public function getCanMoveChildrenWithinDrive()
492 {
493 return $this->canMoveChildrenWithinDrive;
494 }
495 /**
496 * @param bool
497 */
498 public function setCanMoveChildrenWithinTeamDrive($canMoveChildrenWithinTeamDrive)
499 {
500 $this->canMoveChildrenWithinTeamDrive = $canMoveChildrenWithinTeamDrive;
501 }
502 /**
503 * @return bool
504 */
505 public function getCanMoveChildrenWithinTeamDrive()
506 {
507 return $this->canMoveChildrenWithinTeamDrive;
508 }
509 /**
510 * @param bool
511 */
512 public function setCanMoveItemIntoTeamDrive($canMoveItemIntoTeamDrive)
513 {
514 $this->canMoveItemIntoTeamDrive = $canMoveItemIntoTeamDrive;
515 }
516 /**
517 * @return bool
518 */
519 public function getCanMoveItemIntoTeamDrive()
520 {
521 return $this->canMoveItemIntoTeamDrive;
522 }
523 /**
524 * @param bool
525 */
526 public function setCanMoveItemOutOfDrive($canMoveItemOutOfDrive)
527 {
528 $this->canMoveItemOutOfDrive = $canMoveItemOutOfDrive;
529 }
530 /**
531 * @return bool
532 */
533 public function getCanMoveItemOutOfDrive()
534 {
535 return $this->canMoveItemOutOfDrive;
536 }
537 /**
538 * @param bool
539 */
540 public function setCanMoveItemOutOfTeamDrive($canMoveItemOutOfTeamDrive)
541 {
542 $this->canMoveItemOutOfTeamDrive = $canMoveItemOutOfTeamDrive;
543 }
544 /**
545 * @return bool
546 */
547 public function getCanMoveItemOutOfTeamDrive()
548 {
549 return $this->canMoveItemOutOfTeamDrive;
550 }
551 /**
552 * @param bool
553 */
554 public function setCanMoveItemWithinDrive($canMoveItemWithinDrive)
555 {
556 $this->canMoveItemWithinDrive = $canMoveItemWithinDrive;
557 }
558 /**
559 * @return bool
560 */
561 public function getCanMoveItemWithinDrive()
562 {
563 return $this->canMoveItemWithinDrive;
564 }
565 /**
566 * @param bool
567 */
568 public function setCanMoveItemWithinTeamDrive($canMoveItemWithinTeamDrive)
569 {
570 $this->canMoveItemWithinTeamDrive = $canMoveItemWithinTeamDrive;
571 }
572 /**
573 * @return bool
574 */
575 public function getCanMoveItemWithinTeamDrive()
576 {
577 return $this->canMoveItemWithinTeamDrive;
578 }
579 /**
580 * @param bool
581 */
582 public function setCanMoveTeamDriveItem($canMoveTeamDriveItem)
583 {
584 $this->canMoveTeamDriveItem = $canMoveTeamDriveItem;
585 }
586 /**
587 * @return bool
588 */
589 public function getCanMoveTeamDriveItem()
590 {
591 return $this->canMoveTeamDriveItem;
592 }
593 /**
594 * @param bool
595 */
596 public function setCanReadDrive($canReadDrive)
597 {
598 $this->canReadDrive = $canReadDrive;
599 }
600 /**
601 * @return bool
602 */
603 public function getCanReadDrive()
604 {
605 return $this->canReadDrive;
606 }
607 /**
608 * @param bool
609 */
610 public function setCanReadLabels($canReadLabels)
611 {
612 $this->canReadLabels = $canReadLabels;
613 }
614 /**
615 * @return bool
616 */
617 public function getCanReadLabels()
618 {
619 return $this->canReadLabels;
620 }
621 /**
622 * @param bool
623 */
624 public function setCanReadRevisions($canReadRevisions)
625 {
626 $this->canReadRevisions = $canReadRevisions;
627 }
628 /**
629 * @return bool
630 */
631 public function getCanReadRevisions()
632 {
633 return $this->canReadRevisions;
634 }
635 /**
636 * @param bool
637 */
638 public function setCanReadTeamDrive($canReadTeamDrive)
639 {
640 $this->canReadTeamDrive = $canReadTeamDrive;
641 }
642 /**
643 * @return bool
644 */
645 public function getCanReadTeamDrive()
646 {
647 return $this->canReadTeamDrive;
648 }
649 /**
650 * @param bool
651 */
652 public function setCanRemoveChildren($canRemoveChildren)
653 {
654 $this->canRemoveChildren = $canRemoveChildren;
655 }
656 /**
657 * @return bool
658 */
659 public function getCanRemoveChildren()
660 {
661 return $this->canRemoveChildren;
662 }
663 /**
664 * @param bool
665 */
666 public function setCanRemoveContentRestriction($canRemoveContentRestriction)
667 {
668 $this->canRemoveContentRestriction = $canRemoveContentRestriction;
669 }
670 /**
671 * @return bool
672 */
673 public function getCanRemoveContentRestriction()
674 {
675 return $this->canRemoveContentRestriction;
676 }
677 /**
678 * @param bool
679 */
680 public function setCanRemoveMyDriveParent($canRemoveMyDriveParent)
681 {
682 $this->canRemoveMyDriveParent = $canRemoveMyDriveParent;
683 }
684 /**
685 * @return bool
686 */
687 public function getCanRemoveMyDriveParent()
688 {
689 return $this->canRemoveMyDriveParent;
690 }
691 /**
692 * @param bool
693 */
694 public function setCanRename($canRename)
695 {
696 $this->canRename = $canRename;
697 }
698 /**
699 * @return bool
700 */
701 public function getCanRename()
702 {
703 return $this->canRename;
704 }
705 /**
706 * @param bool
707 */
708 public function setCanShare($canShare)
709 {
710 $this->canShare = $canShare;
711 }
712 /**
713 * @return bool
714 */
715 public function getCanShare()
716 {
717 return $this->canShare;
718 }
719 /**
720 * @param bool
721 */
722 public function setCanTrash($canTrash)
723 {
724 $this->canTrash = $canTrash;
725 }
726 /**
727 * @return bool
728 */
729 public function getCanTrash()
730 {
731 return $this->canTrash;
732 }
733 /**
734 * @param bool
735 */
736 public function setCanTrashChildren($canTrashChildren)
737 {
738 $this->canTrashChildren = $canTrashChildren;
739 }
740 /**
741 * @return bool
742 */
743 public function getCanTrashChildren()
744 {
745 return $this->canTrashChildren;
746 }
747 /**
748 * @param bool
749 */
750 public function setCanUntrash($canUntrash)
751 {
752 $this->canUntrash = $canUntrash;
753 }
754 /**
755 * @return bool
756 */
757 public function getCanUntrash()
758 {
759 return $this->canUntrash;
760 }
761}
762
763// Adding a class alias for backwards compatibility with the previous class name.
764class_alias(DriveFileCapabilities::class, 'Google_Service_Drive_DriveFileCapabilities');
Note: See TracBrowser for help on using the repository browser.