Returns the default document library of this site (Drive instance) :param request_drive: True will make an api call to retrieve the drive data :rtype: Drive
(self, request_drive=False)
| 471 | return self.object_id == other.object_id |
| 472 | |
| 473 | def get_default_document_library(self, request_drive=False): |
| 474 | """ Returns the default document library of this site (Drive instance) |
| 475 | |
| 476 | :param request_drive: True will make an api call to retrieve |
| 477 | the drive data |
| 478 | :rtype: Drive |
| 479 | """ |
| 480 | return self.site_storage.get_default_drive(request_drive=request_drive) |
| 481 | |
| 482 | def get_document_library(self, drive_id): |
| 483 | """ Returns a Document Library (a Drive instance) |
nothing calls this directly
no test coverage detected